Skip to content

Commit

Permalink
删除根本没有用到的私有变量 alibaba#4509
Browse files Browse the repository at this point in the history
删除根本没有用到的私有变量 alibaba#4509
原pr代码冲突,重新提交个新的。
  • Loading branch information
lizongbo committed Dec 19, 2023
1 parent a5d5735 commit 97155d4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions core/src/main/java/com/alibaba/druid/sql/parser/Lexer.java
Original file line number Diff line number Diff line change
Expand Up @@ -3128,13 +3128,6 @@ private boolean isOperator(char ch) {
private static final long MULTMIN_RADIX_TEN = Long.MIN_VALUE / 10;
private static final long N_MULTMAX_RADIX_TEN = -Long.MAX_VALUE / 10;

private static final int[] digits = new int[(int) '9' + 1];

static {
for (int i = '0'; i <= '9'; ++i) {
digits[i] = i - '0';
}
}

public final boolean isNegativeIntegerValue() {
return charAt(mark) == '-';
Expand Down

0 comments on commit 97155d4

Please sign in to comment.