BlockParsedResult.java (zxing-zxing-3.4.1) | : | BlockParsedResult.java (zxing-zxing-3.5.0) | ||
---|---|---|---|---|
skipping to change at line 38 | skipping to change at line 38 | |||
/** | /** | |||
* @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es) | * @author Pablo Orduña, University of Deusto (pablo.orduna@deusto.es) | |||
* @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.e s) | * @author Eduardo Castillejo, University of Deusto (eduardo.castillejo@deusto.e s) | |||
*/ | */ | |||
final class BlockParsedResult { | final class BlockParsedResult { | |||
private final DecodedInformation decodedInformation; | private final DecodedInformation decodedInformation; | |||
private final boolean finished; | private final boolean finished; | |||
BlockParsedResult(boolean finished) { | BlockParsedResult() { | |||
this(null, finished); | this(null, false); | |||
} | } | |||
BlockParsedResult(DecodedInformation information, boolean finished) { | BlockParsedResult(DecodedInformation information, boolean finished) { | |||
this.finished = finished; | this.finished = finished; | |||
this.decodedInformation = information; | this.decodedInformation = information; | |||
} | } | |||
DecodedInformation getDecodedInformation() { | DecodedInformation getDecodedInformation() { | |||
return this.decodedInformation; | return this.decodedInformation; | |||
} | } | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |