You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2016/07/09 08:54:07 UTC

svn commit: r1751992 - /poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java

Author: onealj
Date: Sat Jul  9 08:54:07 2016
New Revision: 1751992

URL: http://svn.apache.org/viewvc?rev=1751992&view=rev
Log:
add 2^x to POWER2 comments

Modified:
    poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java

Modified: poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java?rev=1751992&r1=1751991&r2=1751992&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java (original)
+++ poi/trunk/src/java/org/apache/poi/util/RLEDecompressingInputStream.java Sat Jul  9 08:54:07 2016
@@ -34,22 +34,22 @@ public class RLEDecompressingInputStream
      * Bitmasks for performance
      */
     private static final int[] POWER2 = new int[] {
-            0x0001, // 0
-            0x0002, // 1
-            0x0004, // 2
-            0x0008, // 3
-            0x0010, // 4
-            0x0020, // 5
-            0x0040, // 6
-            0x0080, // 7
-            0x0100, // 8
-            0x0200, // 9
-            0x0400, // 10
-            0x0800, // 11
-            0x1000, // 12
-            0x2000, // 13
-            0x4000, // 14
-            0x8000  // 15
+            0x0001, // 2^0
+            0x0002, // 2^1
+            0x0004, // 2^2
+            0x0008, // 2^3
+            0x0010, // 2^4
+            0x0020, // 2^5
+            0x0040, // 2^6
+            0x0080, // 2^7
+            0x0100, // 2^8
+            0x0200, // 2^9
+            0x0400, // 2^10
+            0x0800, // 2^11
+            0x1000, // 2^12
+            0x2000, // 2^13
+            0x4000, // 2^14
+            0x8000  // 2^15
     };
 
     /** the wrapped inputstream */



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org