File: 01-backward-compatibility.patch

package info (click to toggle)
libjavaewah-java 1.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,168 kB
  • sloc: java: 14,577; xml: 169; sh: 11; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 546 bytes parent folder | download
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;
 
 }