Skip to content

Instantly share code, notes, and snippets.

@sizovs
Last active August 29, 2015 14:04
Show Gist options
  • Save sizovs/de918e26fb400a6b4370 to your computer and use it in GitHub Desktop.
Save sizovs/de918e26fb400a6b4370 to your computer and use it in GitHub Desktop.
String[] printingTokenizer(String tokenizable) {
String[] tokens = tokenizer(tokenizable);
if (tokens != null) {tokens.each(System::out::println) }
return tokens;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment