Skip to content

Commit

Permalink
Fixing a findbugs warning. clone() is defined on this class but it di…
Browse files Browse the repository at this point in the history
…dn't implement Cloneable.

git-svn-id: https://svn.apache.org/repos/asf/xalan/java/trunk@1225434 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Michael Glavassevich committed Dec 29, 2011
1 parent c0a6a2f commit ee444d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/apache/xalan/xsltc/util/IntegerArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* @author Jacek Ambroziak
*/
public final class IntegerArray {
public final class IntegerArray implements Cloneable {
private static final int InitialSize = 32;

private int[] _array;
Expand Down

0 comments on commit ee444d9

Please sign in to comment.