Remove getBits()
[zxing.git] / core / test / src / com / google / zxing / common / BitMatrixTestCase.java
index 1bb8351..48ef90c 100644 (file)
@@ -50,13 +50,4 @@ public final class BitMatrixTestCase extends TestCase {
     }
   }
 
-  public void testGetBits() {
-    BitMatrix matrix = new BitMatrix(6);
-    matrix.set(0, 0);
-    matrix.set(5, 5);
-    int[] bits = matrix.getBits();
-    assertEquals(1, bits[0]);
-    assertEquals(8, bits[1]);
-  }
-
 }
\ No newline at end of file