X-Git-Url: http://git.rot13.org/?p=zxing.git;a=blobdiff_plain;f=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fqrcode%2Fdecoder%2FDecoder.java;fp=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Fqrcode%2Fdecoder%2FDecoder.java;h=22cdeb028ae0b989ca11aa2001e19c028c6ee2cd;hp=f7d5273277a8e452752cbd5c7dadf42b68c825cd;hb=d681106e1c3aa97eba803f2eb915fbd2ebb74134;hpb=30f0e5e9eeab4a85a378809bfa7007b128694138 diff --git a/core/src/com/google/zxing/qrcode/decoder/Decoder.java b/core/src/com/google/zxing/qrcode/decoder/Decoder.java index f7d52732..22cdeb02 100644 --- a/core/src/com/google/zxing/qrcode/decoder/Decoder.java +++ b/core/src/com/google/zxing/qrcode/decoder/Decoder.java @@ -79,12 +79,10 @@ public final class Decoder { * * @param bits booleans representing white/black QR Code modules * @return text and bytes encoded within the QR Code - * @throws NotFoundException if the QR Code cannot be found * @throws FormatException if the QR Code cannot be decoded * @throws ChecksumException if error correction fails */ - public DecoderResult decode(BitMatrix bits, Hashtable hints) - throws NotFoundException, FormatException, ChecksumException { + public DecoderResult decode(BitMatrix bits, Hashtable hints) throws FormatException, ChecksumException { // Construct a parser and read version, error-correction level BitMatrixParser parser = new BitMatrixParser(bits);