Fixed the build.
[zxing.git] / core / src / com / google / zxing / qrcode / decoder / ErrorCorrectionLevel.java
index 0e83d58..3d1f2d0 100644 (file)
@@ -45,7 +45,7 @@ final class ErrorCorrectionLevel {
    */
   static final ErrorCorrectionLevel H = new ErrorCorrectionLevel(3);
 
-  private static final ErrorCorrectionLevel[] FOR_BITS = new ErrorCorrectionLevel[]{M, L, H, Q};
+  private static final ErrorCorrectionLevel[] FOR_BITS = {M, L, H, Q};
 
   private final int ordinal;