forked from I2P_Developers/i2p.i2p
compile fixes after prop
This commit is contained in:
@@ -55,13 +55,13 @@ public class RouterAppManager implements ClientAppManager {
|
||||
case UNINITIALIZED:
|
||||
case INITIALIZED:
|
||||
if (_log.shouldLog(Log.WARN))
|
||||
_log.warn("Client " + app.getDisplayName() + " called notify for" + state);
|
||||
_log.warn("Client " + app.getDisplayName() + " called notify for " + state);
|
||||
break;
|
||||
|
||||
case STARTING:
|
||||
case RUNNING:
|
||||
if (_log.shouldLog(Log.INFO))
|
||||
_log.info("Client " + app.getDisplayName() + " called notify for" + state);
|
||||
_log.info("Client " + app.getDisplayName() + " called notify for " + state);
|
||||
break;
|
||||
|
||||
case FORKED:
|
||||
@@ -72,7 +72,7 @@ public class RouterAppManager implements ClientAppManager {
|
||||
if (message == null)
|
||||
message = "";
|
||||
if (_log.shouldLog(Log.INFO))
|
||||
_log.info("Client " + app.getDisplayName() + " called notify for" + state +
|
||||
_log.info("Client " + app.getDisplayName() + " called notify for " + state +
|
||||
' ' + message, e);
|
||||
break;
|
||||
|
||||
|
@@ -60,7 +60,7 @@ public class RouterPasswordManager extends PasswordManager {
|
||||
*
|
||||
* @return success or nothing to migrate
|
||||
*/
|
||||
public boolean migrate() {
|
||||
protected boolean migrate() {
|
||||
synchronized(RouterPasswordManager.class) {
|
||||
if (_context.getBooleanProperty(PROP_MIGRATED))
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user