checkstyle correction

Former-commit-id: 1ef125990f732fb6918bfb44bed1a3bcb464b3d9
This commit is contained in:
Jeremy Long
2013-10-08 15:17:03 -04:00
parent ae0e1c6b81
commit 3d0d9a9969

View File

@@ -460,7 +460,7 @@ public class CPEAnalyzer implements Analyzer {
}
}
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);
}
boolean contains = true;