mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 11:47:26 -08:00
More minor code improvements
git-svn-id: https://zxing.googlecode.com/svn/trunk@248 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d028e94082
commit
513479cf20
|
@ -27,6 +27,9 @@ public final class BitArray {
|
|||
private final int size;
|
||||
|
||||
public BitArray(int size) {
|
||||
if (size < 1) {
|
||||
throw new IllegalArgumentException("size must be at least 1");
|
||||
}
|
||||
this.size = size;
|
||||
this.bits = makeArray(size);
|
||||
}
|
||||
|
|
|
@ -44,16 +44,17 @@ final class GF256Poly {
|
|||
throw new IllegalArgumentException();
|
||||
}
|
||||
this.field = field;
|
||||
if (coefficients.length > 1 && coefficients[0] == 0) {
|
||||
int coefficientsLength = coefficients.length;
|
||||
if (coefficientsLength > 1 && coefficients[0] == 0) {
|
||||
// Leading term must be non-zero for anything except the constant polynomial "0"
|
||||
int firstNonZero = 1;
|
||||
while (firstNonZero < coefficients.length && coefficients[firstNonZero] == 0) {
|
||||
while (firstNonZero < coefficientsLength && coefficients[firstNonZero] == 0) {
|
||||
firstNonZero++;
|
||||
}
|
||||
if (firstNonZero == coefficients.length) {
|
||||
if (firstNonZero == coefficientsLength) {
|
||||
this.coefficients = field.getZero().coefficients;
|
||||
} else {
|
||||
this.coefficients = new int[coefficients.length - firstNonZero];
|
||||
this.coefficients = new int[coefficientsLength - firstNonZero];
|
||||
System.arraycopy(coefficients,
|
||||
firstNonZero,
|
||||
this.coefficients,
|
||||
|
@ -190,9 +191,8 @@ final class GF256Poly {
|
|||
}
|
||||
int size = coefficients.length;
|
||||
int[] product = new int[size];
|
||||
System.arraycopy(coefficients, 0, product, 0, size);
|
||||
for (int i = 0; i < size; i++) {
|
||||
product[i] = field.multiply(product[i], scalar);
|
||||
product[i] = field.multiply(coefficients[i], scalar);
|
||||
}
|
||||
return new GF256Poly(field, product);
|
||||
}
|
||||
|
@ -206,9 +206,8 @@ final class GF256Poly {
|
|||
}
|
||||
int size = coefficients.length;
|
||||
int[] product = new int[size + degree];
|
||||
System.arraycopy(coefficients, 0, product, 0, size);
|
||||
for (int i = 0; i < size; i++) {
|
||||
product[i] = field.multiply(product[i], coefficient);
|
||||
product[i] = field.multiply(coefficients[i], coefficient);
|
||||
}
|
||||
return new GF256Poly(field, product);
|
||||
}
|
||||
|
|
|
@ -40,14 +40,14 @@ final class DecodedBitStreamParser {
|
|||
' ', '$', '%', '*', '+', '-', '.', '/', ':'
|
||||
};
|
||||
private static final String SHIFT_JIS = "Shift_JIS";
|
||||
private static final String EUC_JP = "EUC-JP";
|
||||
private static final boolean ASSUME_SHIFT_JIS;
|
||||
private static final String UTF8 = "UTF-8";
|
||||
private static final String ISO88591 = "ISO-8859-1";
|
||||
|
||||
static {
|
||||
String platformDefault = System.getProperty("file.encoding");
|
||||
ASSUME_SHIFT_JIS = SHIFT_JIS.equalsIgnoreCase(platformDefault) ||
|
||||
"EUC-JP".equalsIgnoreCase(platformDefault);
|
||||
ASSUME_SHIFT_JIS = SHIFT_JIS.equalsIgnoreCase(platformDefault) || EUC_JP.equalsIgnoreCase(platformDefault);
|
||||
}
|
||||
|
||||
private DecodedBitStreamParser() {
|
||||
|
|
Loading…
Reference in a new issue