Skip to content

Commit

Permalink
Remove spaces from file names
Browse files Browse the repository at this point in the history
  • Loading branch information
igorzep committed Apr 3, 2018
1 parent 9b8a909 commit 85ac652
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,6 @@ private String toCamelCase(final String init) {
ret.append(toUpperCase(word.charAt(0)));
ret.append(word.substring(1));
}
if (!(ret.length() == init.length())) {
ret.append(" ");
}
}

return ret.toString();
Expand Down

0 comments on commit 85ac652

Please sign in to comment.