You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by mb...@apache.org on 2010/04/12 20:34:56 UTC

svn commit: r933352 - /ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java

Author: mbenson
Date: Mon Apr 12 18:34:56 2010
New Revision: 933352

URL: http://svn.apache.org/viewvc?rev=933352&view=rev
Log:
add serialVersionUID

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java?rev=933352&r1=933351&r2=933352&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/RuntimeConfigurable.java Mon Apr 12 18:34:56 2010
@@ -39,6 +39,9 @@ import org.xml.sax.helpers.AttributeList
  */
 public class RuntimeConfigurable implements Serializable {
 
+    /** Serialization version */
+    private static final long serialVersionUID = 1L;
+
     /** Empty Hashtable. */
     private static final Hashtable EMPTY_HASHTABLE = new Hashtable(0);