RepoXMLHandler: make helper func static

This commit is contained in:
Daniel Martí 2016-04-23 15:37:34 +01:00
parent 942cfd3cd1
commit 7f2a811541

View File

@ -268,7 +268,7 @@ public class RepoXMLHandler extends DefaultHandler {
curchars.setLength(0);
}
private String cleanWhiteSpace(@Nullable String str) {
private static String cleanWhiteSpace(@Nullable String str) {
return str == null ? null : str.replaceAll("\\s", " ");
}
}