Skip to content

Instantly share code, notes, and snippets.

@okram
Created June 18, 2014 16:35
Show Gist options
  • Save okram/0c5d4dc344a1b9ca96da to your computer and use it in GitHub Desktop.
Save okram/0c5d4dc344a1b9ca96da to your computer and use it in GitHub Desktop.
public static String unHide(final String key) {
return key.startsWith(Graph.HIDDEN_PREFIX) ? key.substring(Graph.HIDDEN_PREFIX.length()) : key;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment