mirror of https://github.com/apache/lucene.git
Correct double semicolon.
This commit is contained in:
parent
fa41ea51d4
commit
6af9cbba29
|
@ -201,7 +201,7 @@ public class PackedTokenAttributeImpl extends CharTermAttributeImpl
|
|||
code = code * 31 + positionLength;
|
||||
if (type != null)
|
||||
code = code * 31 + type.hashCode();
|
||||
code = code * 31 + termFrequency;;
|
||||
code = code * 31 + termFrequency;
|
||||
return code;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue