Skip to content

Commit

Permalink
Showing 2 changed files with 0 additions and 60 deletions.
7 changes: 0 additions & 7 deletions src/org/jcodings/MultiByteEncoding.java
Original file line number Diff line number Diff line change
@@ -53,13 +53,6 @@ protected final int missing(int b, int delta) {
return missing(EncLen[b] - delta);
}

protected final int safeLengthForUptoFourGreatedThan127(byte[]bytes, int p ,int end) {
int b = bytes[p] & 0xff;
int s = TransZero[b];
if (s < 0) return s == A ? 1 : CHAR_INVALID;
return lengthForTwoUptoFour(bytes, p, end, b, s);
}

protected final int safeLengthForUptoFour(byte[]bytes, int p ,int end) {
int b = bytes[p] & 0xff;
int s = TransZero[b];
53 changes: 0 additions & 53 deletions src/org/jcodings/util/ArrayCopy.java

This file was deleted.

0 comments on commit fde8846

Please sign in to comment.