I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit d8d76fd3 authored by zzz's avatar zzz
Browse files

* Ministreaming:

      - Make getInt() static
      - Move the big TestSwarm class out of the lib
parent 316c20ee
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ public class I2PSocketOptionsImpl implements I2PSocketOptions {
_writeTimeout = getInt(opts, PROP_WRITE_TIMEOUT, DEFAULT_WRITE_TIMEOUT);
}
protected int getInt(Properties opts, String name, int defaultVal) {
protected static int getInt(Properties opts, String name, int defaultVal) {
if (opts == null) return defaultVal;
String val = opts.getProperty(name);
if (val == null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment