This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jcs.git
The following commit(s) were added to refs/heads/master by this push:
new f8692245 Flip null test
f8692245 is described below
commit f8692245c0574c89ae347c066e695a0f3fe54f31
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jul 5 09:35:27 2026 -0400
Flip null test
---
.../commons/jcs4/auxiliary/remote/server/RemoteCacheStartupServlet.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/auxiliary/remote/server/RemoteCacheStartupServlet.java
b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/auxiliary/remote/server/RemoteCacheStartupServlet.java
index 719caa38..9988d982 100644
---
a/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/auxiliary/remote/server/RemoteCacheStartupServlet.java
+++
b/commons-jcs4-core/src/main/java/org/apache/commons/jcs4/auxiliary/remote/server/RemoteCacheStartupServlet.java
@@ -193,7 +193,7 @@ public class RemoteCacheStartupServlet
this.registryHost = _registryHost;
}
final String regPortString = config.getInitParameter("registryPort");
- if (null != regPortString)
+ if (regPortString != null)
{
setRegistryPort(regPortString);
}