Created
June 18, 2014 16:35
-
-
Save okram/0c5d4dc344a1b9ca96da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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