You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/05/10 16:06:57 UTC

[tomcat] branch 8.5.x updated: Code clean-up - formatting. No functional change.

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

markt pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
     new 6ee0828b13 Code clean-up - formatting. No functional change.
6ee0828b13 is described below

commit 6ee0828b13d26ec563923f8e217a7896858679a0
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed May 10 17:06:50 2023 +0100

    Code clean-up - formatting. No functional change.
---
 java/org/apache/catalina/ant/jmx/JMXAccessorQueryTask.java | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/java/org/apache/catalina/ant/jmx/JMXAccessorQueryTask.java b/java/org/apache/catalina/ant/jmx/JMXAccessorQueryTask.java
index 4f8aa81b46..f0dd05f482 100644
--- a/java/org/apache/catalina/ant/jmx/JMXAccessorQueryTask.java
+++ b/java/org/apache/catalina/ant/jmx/JMXAccessorQueryTask.java
@@ -154,10 +154,7 @@ public class JMXAccessorQueryTask extends JMXAccessorTask {
                     }
                     continue;
                 }
-                if (value == null) {
-                    continue;
-                }
-                if ("modelerType".equals(attName)) {
+                if ((value == null) || "modelerType".equals(attName)) {
                     continue;
                 }
                 createProperty(pname + attName, value);


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org