1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Restore the compatibility with the previous releases
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/src/main/java/com/googlecode/javaewah/EWAHCompressedBitmap.java
+++ b/src/main/java/com/googlecode/javaewah/EWAHCompressedBitmap.java
@@ -2170,6 +2170,10 @@
*/
public static final int WORD_IN_BITS = 64;
+ /** The Constant wordinbits represents the number of bits in a long. */
+ @Deprecated
+ public static final int wordinbits = 64;
+
static final long serialVersionUID = 1L;
}
|