fix build.md

This commit is contained in:
idk
2022-12-22 05:14:02 +00:00
parent 0fae88de8b
commit f12930b6f0
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit!
#Thu Dec 22 05:01:16 UTC 2022
build.number=372
#Thu Dec 22 05:11:47 UTC 2022
build.number=373

View File

@ -43,6 +43,7 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
got = true;
shutdown = true;
this.shutdownSystray();
cam.unregister(this);
cam.notify(this, ClientAppState.STOPPED,
"Shutting down up profile manager systray", null);
}
@ -83,6 +84,7 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
}
}
public void startup() {
cam.register(this);
cam.notify(this, ClientAppState.STARTING,
"Starting up profile manager systray", null);
Runnable r = new Runnable() {
@ -176,7 +178,7 @@ public class I2PBrowserPlugin extends I2PBrowser implements ClientApp {
}
String msg = "Firefox profile manager systray is stopped";
logger.info(msg);
cam.notify(this, ClientAppState.stopped, msg, null);
cam.notify(this, ClientAppState.STOPPED, msg, null);
return ClientAppState.STOPPED;
}
}