Remove getBits()
[zxing.git] / core / test / src / com / google / zxing / common / BitMatrixTestCase.java
index bdd87bd..48ef90c 100644 (file)
@@ -19,7 +19,7 @@ package com.google.zxing.common;
 import junit.framework.TestCase;
 
 /**
- * @author srowen@google.com (Sean Owen)
+ * @author Sean Owen
  */
 public final class BitMatrixTestCase extends TestCase {
 
@@ -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