outbound nickname

This commit is contained in:
Zlatin Balevsky
2019-06-07 14:24:45 +01:00
parent 2c1d5508ed
commit d4336e9b5d
2 changed files with 5 additions and 1 deletions

View File

@@ -92,7 +92,7 @@ public class Core {
i2pOptionsFile.withInputStream { i2pOptions.load(it) }
} else {
i2pOptions["inbound.nickname"] = "MuWire"
i2pOptions["oubtound.nickname"] = "MuWire"
i2pOptions["outbound.nickname"] = "MuWire"
i2pOptions["inbound.length"] = "3"
i2pOptions["inbound.quantity"] = "2"
i2pOptions["outbound.length"] = "3"

View File

@@ -44,11 +44,15 @@ class SearchIndex {
if (rv == null) {
rv = forWord
} else {
System.out.println("before retention $rv")
rv.retainAll(forWord)
System.out.println("after retention")
}
}
System.out.println("rv is $rv")
if (rv != null)
return rv.asList()
[]