Skip to content
This repository was archived by the owner on Dec 18, 2022. It is now read-only.

Commit fd013be

Browse files
committed
bump jtorctl dependency from 0.4 -> 0.4.5.7
1 parent e1170fa commit fd013be

2 files changed

Lines changed: 1 addition & 11 deletions

File tree

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ext.deps = [
3535
],
3636
recyclerView: "androidx.recyclerview:recyclerview:1.2.0",
3737
],
38-
jtorctl: "info.guardianproject:jtorctl:0.4",
38+
jtorctl: "info.guardianproject:jtorctl:0.4.5.7",
3939
kotlin: [
4040
coroutinesAndroid: "org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.coroutines}",
4141
coroutinesCore: "org.jetbrains.kotlinx:kotlinx-coroutines-core:${versions.coroutines}",

topl-service/src/main/java/io/matthewnelson/topl_service/service/components/onionproxy/ServiceEventListener.kt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,6 @@ internal class ServiceEventListener private constructor(): BaseEventListener() {
123123
debug("UNRECOGNIZED $data")
124124
}
125125

126-
override fun newConsensus(data: String?) {
127-
if (data.isNullOrEmpty()) return
128-
debug("${TorControlCommands.EVENT_NEWCONSENSUS} $data")
129-
}
130-
131126
override fun connBw(data: String?) {
132127
if (data.isNullOrEmpty()) return
133128
debug("${TorControlCommands.EVENT_CONN_BW} $data")
@@ -172,11 +167,6 @@ internal class ServiceEventListener private constructor(): BaseEventListener() {
172167
debug("${TorControlCommands.EVENT_GOT_SIGNAL} $data")
173168
}
174169

175-
override fun hsDescContent(data: String?) {
176-
if (data.isNullOrEmpty()) return
177-
debug("${TorControlCommands.EVENT_HS_DESC_CONTENT} $data")
178-
}
179-
180170
override fun transportLaunched(data: String?) {
181171
if (data.isNullOrEmpty()) return
182172
debug("${TorControlCommands.EVENT_TRANSPORT_LAUNCHED} $data")

0 commit comments

Comments
 (0)