[core] Fix broken concatenation on CPD GUI

- Fixes #1173
This commit is contained in:
Juan Martín Sotuyo Dodero
2018-06-09 20:14:02 -03:00
parent 914293daad
commit 5219172267

View File

@ -631,7 +631,7 @@ public class GUI implements CPDListener {
int separatorPos = sourceId.lastIndexOf(File.separatorChar); int separatorPos = sourceId.lastIndexOf(File.separatorChar);
label = "..." + sourceId.substring(separatorPos); label = "..." + sourceId.substring(separatorPos);
} else { } else {
label = '(' + sourceIDs.size() + " separate files)"; label = '(' + String.valueOf(sourceIDs.size()) + " separate files)";
} }
match.setLabel(label); match.setLabel(label);