Skip to content

Instantly share code, notes, and snippets.

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