Skip to content

Instantly share code, notes, and snippets.

@mworzala
Last active October 31, 2018 02:12
Show Gist options
  • Save mworzala/12d33fb191cce88ec15cd1e26cd2a365 to your computer and use it in GitHub Desktop.
Save mworzala/12d33fb191cce88ec15cd1e26cd2a365 to your computer and use it in GitHub Desktop.
Better Fetch Method
public String getNode(String... path) {
String token = "";
try {
token = configNode.getNode(path).getString();
} catch (NullPointerException e) {
e.printStackTrace();
}
return token;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment