From b7c0b91d559fd122522bb2553310630f6d5cb90e Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 19 Sep 2022 11:52:20 -0400 Subject: [PATCH] fix double-declaration of option message --- java/net/i2p/router/WindowsServiceUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/net/i2p/router/WindowsServiceUtil.java b/java/net/i2p/router/WindowsServiceUtil.java index 1bd1f66..4f5bf5f 100644 --- a/java/net/i2p/router/WindowsServiceUtil.java +++ b/java/net/i2p/router/WindowsServiceUtil.java @@ -110,7 +110,7 @@ public class WindowsServiceUtil { if (!isStart(serviceName)) { int a; String message="It appears you have an existing I2P service installed.\n"; - String message+="However, it is not running yet. Would you like to start it?\n"; + message+="However, it is not running yet. Would you like to start it?\n"; a = JOptionPane.showConfirmDialog( null, message, "I2P Service detected not running", JOptionPane.YES_NO_OPTION);