mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
formatting
This commit is contained in:
parent
475288d4c4
commit
506e865457
|
@ -180,7 +180,7 @@ final class PDF417HighLevelEncoder {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (encoding == null && !autoECI) {
|
if (encoding == null && !autoECI) {
|
||||||
checkCharset(msg,255,"Consider specifying EncodeHintType.PDF417_AUTO_ECI and/or EncodeTypeHint.CHARACTER_SET.");
|
checkCharset(msg, 255, "Consider specifying EncodeHintType.PDF417_AUTO_ECI and/or EncodeTypeHint.CHARACTER_SET");
|
||||||
}
|
}
|
||||||
|
|
||||||
//the codewords 0..928 are encoded as Unicode characters
|
//the codewords 0..928 are encoded as Unicode characters
|
||||||
|
|
|
@ -35,7 +35,9 @@ import org.junit.Test;
|
||||||
* Tests {@link PDF417HighLevelEncoder}.
|
* Tests {@link PDF417HighLevelEncoder}.
|
||||||
*/
|
*/
|
||||||
public final class PDF417EncoderTestCase extends Assert {
|
public final class PDF417EncoderTestCase extends Assert {
|
||||||
|
|
||||||
private static final String PDF417PFX = "\u039f\u001A\u0385";
|
private static final String PDF417PFX = "\u039f\u001A\u0385";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testEncodeAuto() throws Exception {
|
public void testEncodeAuto() throws Exception {
|
||||||
String input = "ABCD";
|
String input = "ABCD";
|
||||||
|
|
Loading…
Reference in a new issue