We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d6ba8 commit 06e8a23Copy full SHA for 06e8a23
src/main/java/org/wltea/analyzer/core/AnalyzeContext.java
@@ -268,13 +268,13 @@ void outputToResult(){
268
while(l != null){
269
this.results.add(l);
270
//字典中无单字,但是词元冲突了,切分出相交词元的前一个词元中的单字
271
- int innerIndex = index + 1;
+ /*int innerIndex = index + 1;
272
for (; innerIndex < index + l.getLength(); innerIndex++) {
273
Lexeme innerL = path.peekFirst();
274
if (innerL != null && innerIndex == innerL.getBegin()) {
275
this.outputSingleCJK(innerIndex - 1);
276
}
277
- }
+ }*/
278
279
//将index移至lexeme后
280
index = l.getBegin() + l.getLength();
0 commit comments