small cleanups in IntVector implementation

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2778 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2008-05-02 13:59:54 +00:00
parent 54e2baf510
commit 4ba4cb5cb5
3 changed files with 2 additions and 4 deletions

View File

@ -405,7 +405,6 @@ public final class BasicNaturalRelation implements IBinaryNaturalRelation {
delegateStore.performVerboseAction();
for (int i = 0; i < smallStore.length; i++) {
Trace.println("smallStore[" + i + "]: " + smallStore[i].getClass());
smallStore[i].performVerboseAction();
}
}
}

View File

@ -10,14 +10,13 @@
*******************************************************************************/
package com.ibm.wala.util.intset;
import com.ibm.wala.util.debug.VerboseAction;
/**
* interface for array of integer
*
* @author sfink
*/
public interface IntVector extends VerboseAction {
public interface IntVector{
int get(int x);

View File

@ -36,7 +36,7 @@ public class SparseIntVector implements IntVector {
private final int defaultValue;
SparseIntVector(int defaultValue) {
public SparseIntVector(int defaultValue) {
this.defaultValue = defaultValue;
}