GenericJMX plugin: fix indentation/bracket error
authorMarc Fournier <marc.fournier@camptocamp.com>
Wed, 2 Dec 2015 07:53:53 +0000 (08:53 +0100)
committerMarc Fournier <marc.fournier@camptocamp.com>
Wed, 2 Dec 2015 07:58:28 +0000 (08:58 +0100)
1e2ad9c0 contained a mistake which resulted in the following build
error. It seems to be a bad copy-paste when creating #1330 from the
patch in #1291.

```
./org/collectd/java/GenericJMXConfValue.java:535: error: variable tmp is already defined in constructor GenericJMXConfValue(OConfigItem)
          String tmp = getConfigString (child);
```

bindings/java/org/collectd/java/GenericJMXConfValue.java

index 802622c..25b70d4 100644 (file)
@@ -530,12 +530,12 @@ class GenericJMXConfValue
         String tmp = getConfigString (child);
         if (tmp != null)
           this._instance_from.add (tmp);
-        else if (child.getKey ().equalsIgnoreCase ("PluginName"))
-        {
-          String tmp = getConfigString (child);
-          if (tmp != null)
-            this._plugin_name = tmp;
-        }
+      }
+      else if (child.getKey ().equalsIgnoreCase ("PluginName"))
+      {
+        String tmp = getConfigString (child);
+        if (tmp != null)
+          this._plugin_name = tmp;
       }
       else
         throw (new IllegalArgumentException ("Unknown option: "