compile fixes after prop

This commit is contained in:
zzz
2012-10-14 20:03:56 +00:00
parent b03b4745db
commit c9196fda03
5 changed files with 13 additions and 11 deletions

View File

@@ -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;

View File

@@ -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;