"Fossies" - the Fresh Open Source Software Archive  

Source code changes of the file "zxingorg/src/main/java/com/google/zxing/web/OutputUtils.java" between
zxing-zxing-3.4.1.tar.gz and zxing-zxing-3.5.0.tar.gz

About: ZXing ("zebra crossing") is a multi-format 1D/2D barcode image processing library implemented in Java, with ports to other languages. Info: Project is in maintenance mode (no active development).

OutputUtils.java  (zxing-zxing-3.4.1):OutputUtils.java  (zxing-zxing-3.5.0)
skipping to change at line 52 skipping to change at line 52
} else if (i % HALF_BYTES_PER_LINE == 0) { } else if (i % HALF_BYTES_PER_LINE == 0) {
result.append(" "); result.append(" ");
} else { } else {
result.append(' '); result.append(' ');
} }
} }
return result.toString(); return result.toString();
} }
private static char hexChar(int value) { private static char hexChar(int value) {
if (value < 0 || value > 15) {
throw new IllegalArgumentException("Bad hex digit value " + value);
}
return (char) (value < 10 ? ('0' + value) : ('a' + (value - 10))); return (char) (value < 10 ? ('0' + value) : ('a' + (value - 10)));
} }
} }
 End of changes. 1 change blocks. 
3 lines changed or deleted 0 lines changed or added

Home  |  About  |  Features  |  All  |  Newest  |  Dox  |  Diffs  |  RSS Feeds  |  Screenshots  |  Comments  |  Imprint  |  Privacy  |  HTTP(S)