File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
queryparser/src/java/org/apache/lucene/queryparser/classic Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -120,9 +120,6 @@ configure(project(":lucene:queryparser")) {
120
120
text = text. replace(
121
121
" new java.util.ArrayList<int[]>" ,
122
122
" new java.util.ArrayList<>" )
123
- text = text. replace(
124
- " final private LookaheadSuccess jj_ls =" ,
125
- " static final private LookaheadSuccess jj_ls =" )
126
123
return text
127
124
})
128
125
}
Original file line number Diff line number Diff line change @@ -253,8 +253,6 @@ Optimizations
253
253
254
254
* LUCENE-9536: Reduced memory usage for OrdinalMap when a segment has all
255
255
values. (Julie Tibshirani via Adrien Grand)
256
-
257
- * LUCENE-9021: QueryParser: re-use the LookaheadSuccess exception. (Przemek Bruski via Mikhail Khludnev)
258
256
259
257
Bug Fixes
260
258
---------------------
Original file line number Diff line number Diff line change @@ -869,7 +869,7 @@ private Token jj_consume_token(int kind) throws ParseException {
869
869
870
870
@ SuppressWarnings ("serial" )
871
871
static private final class LookaheadSuccess extends java .lang .Error { }
872
- static final private LookaheadSuccess jj_ls = new LookaheadSuccess ();
872
+ final private LookaheadSuccess jj_ls = new LookaheadSuccess ();
873
873
private boolean jj_scan_token (int kind ) {
874
874
if (jj_scanpos == jj_lastpos ) {
875
875
jj_la --;
You can’t perform that action at this time.
0 commit comments