From d8887fdfa53be44f645088dd904f47db057cdc47 Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 12 Sep 2022 20:29:09 -0400 Subject: [PATCH] remove and replace TODO comment --- java/net/i2p/router/WinLauncher.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/java/net/i2p/router/WinLauncher.java b/java/net/i2p/router/WinLauncher.java index 65255c8..e063ae4 100644 --- a/java/net/i2p/router/WinLauncher.java +++ b/java/net/i2p/router/WinLauncher.java @@ -87,16 +87,8 @@ public class WinLauncher extends CopyConfigDir { File programs = programFile(); File home = homeDir(); - // TODO: I want to minimize the amount of stuff I have to rely on NSIS for - // and if I - // 1. make the config directory inclusion part of the jpackage step - // and - // 2. make the launcher copy new or missing config files at launch - // then NSIS serves primarily as a way of providing multilanguage - // support in the installer. It has a higher degree of customization, - // but probably ceases to be necessary, I can make jpackage generate - // the installer, **and** I get to build every other kind of jpackage - // powered package. + // This actually does most of what we use NSIS for if NSIS hasn't + // already done it, which essentially makes this whole thing portable. if (!copyConfigDir()) { logger.severe("Cannot copy the configuration directory"); System.exit(1);