diff --git a/zxing-android-embedded/src/com/journeyapps/barcodescanner/BarcodeCallback.java b/zxing-android-embedded/src/com/journeyapps/barcodescanner/BarcodeCallback.java index 653672965..e5e460b78 100644 --- a/zxing-android-embedded/src/com/journeyapps/barcodescanner/BarcodeCallback.java +++ b/zxing-android-embedded/src/com/journeyapps/barcodescanner/BarcodeCallback.java @@ -22,7 +22,10 @@ public interface BarcodeCallback { * * Do not depend on this being called at any specific point in the decode cycle. * + * This is a default method and can be omitted by the implementing class. + * * @param resultPoints points potentially identifying a barcode */ - void possibleResultPoints(List resultPoints); + default void possibleResultPoints(List resultPoints) { + } }