Fixed typo (#90)

Originally submitted as PR81 by https://github.com/ArkiZh

Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
This commit is contained in:
Arnaud J Le Hors 2019-12-16 09:33:58 +01:00 committed by Matthew B White
parent cdb0e8b40c
commit a026a4ffbf

View file

@ -54,7 +54,7 @@ public class State {
}
public static String[] splitKey(String key) {
System.out.println("Splittin gkey " + key + " " + java.util.Arrays.asList(key.split(":")));
System.out.println("Splitting key " + key + " " + java.util.Arrays.asList(key.split(":")));
return key.split(":");
}