bindings/java/: Initialize `time' and `interval' to zero.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 29 Mar 2009 11:55:32 +0000 (13:55 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 29 Mar 2009 11:55:32 +0000 (13:55 +0200)
They will be replaced by the correct values automatically, so it's better
to initialize the members to those ``magic'' values..

bindings/java/org/collectd/api/PluginData.java
bindings/java/org/collectd/api/ValueList.java

index 45cd836..26b0206 100644 (file)
@@ -25,7 +25,7 @@ import java.util.Date;
  */
 public class PluginData {
 
-    protected long _time;
+    protected long _time = 0;
     protected String _host;
     protected String _plugin;
     protected String _pluginInstance = "";
index 4ba3018..1baeff2 100644 (file)
@@ -29,7 +29,7 @@ public class ValueList extends PluginData {
     private List<Number> _values = new ArrayList<Number>();
     private DataSet _ds;
 
-    private long _interval;
+    private long _interval = 0;
 
     public ValueList() {