Skip to content

Instantly share code, notes, and snippets.

@theresajayne
Created August 16, 2018 11:46
Show Gist options
  • Save theresajayne/a929fdd396a3d5451185d4b79148536d to your computer and use it in GitHub Desktop.
Save theresajayne/a929fdd396a3d5451185d4b79148536d to your computer and use it in GitHub Desktop.
public ConfigurationNode getConfig()
{
try {
YAMLConfigurationLoader.Builder builder = YAMLConfigurationLoader.builder();
builder.setPath(configDir);
YAMLConfigurationLoader loader = builder.build();
return loader.load();
}
catch (IOException ioe)
{
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment