Skip to content

Commit e83013b

Browse files
committed
Adds javadoc warning to GHBitSetImpl.
1 parent 5d7c1e9 commit e83013b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/src/main/java/com/graphhopper/coll/GHBitSetImpl.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
import java.util.BitSet;
2121

2222
/**
23+
* This implementation stores the bits inside the values of a long-array. Be aware that the size of this array grows
24+
* depending on the values you pass into this set. If you only want to add a few (possibly large) integers you should
25+
* use {@link GHTBitSet} instead.
26+
*
2327
* @author Peter Karich
2428
*/
2529
public class GHBitSetImpl extends BitSet implements GHBitSet {

0 commit comments

Comments
 (0)