Correct double semicolon.

This commit is contained in:
Dawid Weiss 2020-12-17 14:18:43 +01:00
parent fa41ea51d4
commit 6af9cbba29
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}