This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 9c704657 authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Remove duplicate delimiting character

parent 50857f82
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!2Add gitlab metadata
......@@ -216,7 +216,7 @@ public class MetaDataRepository {
}
private static List<String> split(String s) {
StringTokenizer st = new StringTokenizer(s, " \t\n\r\f ");
StringTokenizer st = new StringTokenizer(s, " \t\n\r\f");
List<String> result = new ArrayList<>();
while (st.hasMoreTokens()) {
result.add(st.nextToken());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment