Added some degree of support for Character Set ECIs
[zxing.git] / core / src / com / google / zxing / qrcode / QRCodeReader.java
index 34fe999..4f5105e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 Google Inc.
+ * Copyright 2007 ZXing authors
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@ public final class QRCodeReader implements Reader {
       decoderResult = decoder.decode(bits);
       points = NO_POINTS;
     } else {
-      DetectorResult result = new Detector(image).detect();
+      DetectorResult result = new Detector(image).detect(hints);
       decoderResult = decoder.decode(result.getBits());
       points = result.getPoints();
     }