move to singleton ReaderException for a bit more performance
[zxing.git] / core / src / com / google / zxing / qrcode / decoder / DataMask.java
index d55a086..6ba1b35 100755 (executable)
@@ -1,5 +1,5 @@
 /*\r
- * Copyright 2007 Google Inc.\r
+ * Copyright 2007 ZXing authors\r
  *\r
  * Licensed under the Apache License, Version 2.0 (the "License");\r
  * you may not use this file except in compliance with the License.\r
@@ -25,14 +25,14 @@ package com.google.zxing.qrcode.decoder;
  * <p>Note that the diagram in section 6.8.1 is misleading since it indicates that i is column position\r
  * and j is row position. In fact, as the text says, i is row position and j is column position.</p>\r
  *\r
- * @author srowen@google.com (Sean Owen)\r
+ * @author Sean Owen\r
  */\r
 abstract class DataMask {\r
 \r
   /**\r
    * See ISO 18004:2006 6.8.1\r
    */\r
-  private static final DataMask[] DATA_MASKS = new DataMask[]{\r
+  private static final DataMask[] DATA_MASKS = {\r
       new DataMask000(),\r
       new DataMask001(),\r
       new DataMask010(),\r