You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mr...@apache.org on 2011/12/29 06:07:43 UTC

svn commit: r1225434 - /xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java

Author: mrglavas
Date: Thu Dec 29 05:07:42 2011
New Revision: 1225434

URL: http://svn.apache.org/viewvc?rev=1225434&view=rev
Log:
Fixing a findbugs warning. clone() is defined on this class but it didn't implement Cloneable.

Modified:
    xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java

Modified: xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java
URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java?rev=1225434&r1=1225433&r2=1225434&view=diff
==============================================================================
--- xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java (original)
+++ xalan/java/trunk/src/org/apache/xalan/xsltc/util/IntegerArray.java Thu Dec 29 05:07:42 2011
@@ -24,7 +24,7 @@ package org.apache.xalan.xsltc.util;
 /**
  * @author Jacek Ambroziak
  */
-public final class IntegerArray {
+public final class IntegerArray implements Cloneable {
     private static final int InitialSize = 32;
     
     private int[] _array;



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org