You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2022/01/17 10:46:21 UTC

[commons-daemon] 02/05: Remove out-dated comment

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git

commit 8892198668e75be0ff9f43dcc79d526baed94120
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Jan 17 10:38:37 2022 +0000

    Remove out-dated comment
---
 .../java/org/apache/commons/daemon/support/DaemonConfiguration.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java b/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
index 628c361..417d99e 100644
--- a/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
+++ b/src/main/java/org/apache/commons/daemon/support/DaemonConfiguration.java
@@ -139,7 +139,7 @@ public final class DaemonConfiguration
             if (sysvalue == null) {
                 // Try with the environment if there was no
                 // property by that name.
-                sysvalue = System.getenv(variable); // N.B. Deprecated in Java 1.3/1.4, but re-instated in Java 1.5+
+                sysvalue = System.getenv(variable);
             }
             if (sysvalue != null) {
                 final String strtoken = propValue.substring(ctoken, btoken);