Make WinLauncher extend WindowsUpdatePostProcessor

This commit is contained in:
idk
2021-07-01 20:05:21 -04:00
parent 97f3dbd71f
commit 755a47d6f2

View File

@@ -22,7 +22,6 @@ import static net.i2p.update.UpdateType.*;
* router.pid - the pid of the java process. * router.pid - the pid of the java process.
*/ */
public class WinLauncher extends WindowsUpdatePostProcessor { public class WinLauncher extends WindowsUpdatePostProcessor {
WindowsUpdatePostProcessor wupp = new WindowsUpdatePostProcessor();
public void main(String[] args) throws Exception { public void main(String[] args) throws Exception {
File programs = selectProgramFile(); File programs = selectProgramFile();
@@ -44,8 +43,8 @@ public class WinLauncher extends WindowsUpdatePostProcessor {
UpdateManager upmgr = updateManagerClient(); UpdateManager upmgr = updateManagerClient();
if (upmgr != null) { if (upmgr != null) {
upmgr.register(this.wupp, ROUTER_SIGNED_SU3, 6); upmgr.register(this, ROUTER_SIGNED_SU3, 6);
upmgr.register(this.wupp, ROUTER_DEV_SU3, 6); upmgr.register(this, ROUTER_DEV_SU3, 6);
}else{ }else{
System.out.println("\t unable to register updates"); System.out.println("\t unable to register updates");
} }