Skip to content

Commit

Permalink
actually, we don't want to test with jdk 7
Browse files Browse the repository at this point in the history
  • Loading branch information
ztellman committed Aug 16, 2016
1 parent ab56557 commit ab7aecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,5 +1,4 @@
language: clojure
script: lein do clean, test
jdk:
- oraclejdk7
- oraclejdk8
4 changes: 2 additions & 2 deletions src/io/lacuna/bifurcan/utils/BitIntSet.java
Expand Up @@ -13,7 +13,7 @@ public class BitIntSet {
* @return a bit-int set, with an implied size of 0.
*/
public static long[] create() {
return BitVector.create(64);
return BitVector.create(0);
}

/**
Expand Down Expand Up @@ -72,7 +72,7 @@ public static long[] add(long[] set, int bitsPerElement, int size, long val) {
} else {
return set;
}
}
}

/**
* @param set the bit-int set
Expand Down

0 comments on commit ab7aecb

Please sign in to comment.