Skip to content

Commit

Permalink
Update AnalyzeContext.java (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhipingpan authored and medcl committed May 1, 2019
1 parent a1d6ba8 commit 06e8a23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/wltea/analyzer/core/AnalyzeContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -268,13 +268,13 @@ void outputToResult(){
while(l != null){
this.results.add(l);
//字典中无单字,但是词元冲突了,切分出相交词元的前一个词元中的单字
int innerIndex = index + 1;
/*int innerIndex = index + 1;
for (; innerIndex < index + l.getLength(); innerIndex++) {
Lexeme innerL = path.peekFirst();
if (innerL != null && innerIndex == innerL.getBegin()) {
this.outputSingleCJK(innerIndex - 1);
}
}
}*/

//将index移至lexeme后
index = l.getBegin() + l.getLength();
Expand Down

1 comment on commit 06e8a23

@clyuz
Copy link

@clyuz clyuz commented on 06e8a23 Jul 25, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mvn install 结果是7.0.0版本,请问什么原因啊

Please sign in to comment.