We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee4b181 + eb4cbd5 commit 9319110Copy full SHA for 9319110
zxing-android-embedded/src/com/journeyapps/barcodescanner/BarcodeCallback.java
@@ -22,7 +22,10 @@ public interface BarcodeCallback {
22
*
23
* Do not depend on this being called at any specific point in the decode cycle.
24
25
+ * This is a default method and can be omitted by the implementing class.
26
+ *
27
* @param resultPoints points potentially identifying a barcode
28
*/
- void possibleResultPoints(List<ResultPoint> resultPoints);
29
+ default void possibleResultPoints(List<ResultPoint> resultPoints) {
30
+ }
31
}
0 commit comments