Remove some redundant 'throws'; allocate more reasonably sized StringBuffers for...
[zxing.git] / core / src / com / google / zxing / qrcode / detector / FinderPatternFinder.java
index 1d35e67..1d819ec 100755 (executable)
@@ -379,7 +379,7 @@ public class FinderPatternFinder {
    * @param j end of possible finder pattern in row\r
    * @return true if a finder pattern candidate was found this time\r
    */\r
-  protected boolean handlePossibleCenter(int[] stateCount, int i, int j) throws ReaderException {\r
+  protected boolean handlePossibleCenter(int[] stateCount, int i, int j) {\r
     int stateCountTotal = stateCount[0] + stateCount[1] + stateCount[2] + stateCount[3] +\r
         stateCount[4];\r
     float centerJ = centerFromEnd(stateCount, j);\r