checkstyle correction

Former-commit-id: c74fc3538a9fa0d41dfe04873a535b3f622721aa
This commit is contained in:
Jeremy Long
2013-10-08 15:17:03 -04:00
parent 79c31b5f54
commit c4869f1917

View File

@@ -460,7 +460,7 @@ public class CPEAnalyzer implements Analyzer {
} }
} }
if (tempWord != null && !list.isEmpty()) { if (tempWord != null && !list.isEmpty()) {
String tmp = list.get(list.size() - 1) + tempWord; final String tmp = list.get(list.size() - 1) + tempWord;
list.add(tmp); list.add(tmp);
} }
boolean contains = true; boolean contains = true;