Reign in some of the insanity

This commit is contained in:
eyedeekay
2024-03-08 19:04:56 -05:00
parent bf89c119a7
commit 35666caefd
3 changed files with 4 additions and 20 deletions

View File

@@ -4,11 +4,6 @@ import java.io.File;
import net.i2p.util.Log;
public class WindowsAppUtil extends WindowsServiceUtil {
final Log logger;
public WindowsAppUtil(RouterContext ctx) {
super();
logger = ctx.logManager().getLog(WindowsAppUtil.class);
}
protected File selectHome() { // throws Exception {
String path_override = System.getenv("I2P_CONFIG");
if (path_override != null) {
@@ -21,7 +16,6 @@ public class WindowsAppUtil extends WindowsServiceUtil {
}
}
File i2p = appImageHome();
logger.info("Checking for signs of life in I2P_CONFIG directory: " + i2p);
return i2p;
}
@@ -37,7 +31,6 @@ public class WindowsAppUtil extends WindowsServiceUtil {
}
}
File i2p = appImageHome();
logger.info("Checking for signs of life in I2P directory: " + i2p);
return i2p;
}