]> git.ipfire.org Git - thirdparty/collectd.git/commitdiff
Don't know why empty space is removed by contrib/format.sh
authorCaden <jianyulu.cs@gmail.com>
Tue, 22 Jan 2019 22:28:05 +0000 (14:28 -0800)
committerGitHub <noreply@github.com>
Tue, 22 Jan 2019 22:28:05 +0000 (14:28 -0800)
bindings/java/org/collectd/java/GenericJMXConfValue.java

index 34aa20a33944ede47eb1953d6c89e74b99d74c89..c175dd5b319f28406ac9e6c7f990f8548caf3361 100644 (file)
@@ -139,7 +139,7 @@ class GenericJMXConfValue
         return (new Long(((AtomicLong) obj).get()));
     }
     else if (obj instanceof Boolean) {
-      return (Boolean) obj ? 1 : 0;
+      return (Boolean)obj ? 1 : 0;
     }
     return (null);
   } /* }}} Number genericObjectToNumber */