Skip to content

Commit

Permalink
feat(UtiDb): make class public
Browse files Browse the repository at this point in the history
This is necessary so that a user can add additional XML definitions.
  • Loading branch information
Paul Sexton committed Sep 21, 2015
1 parent 0d3a346 commit b463497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/psexton/libuti/UtiDb.java
Expand Up @@ -37,7 +37,7 @@
*
* @author psexton
*/
class UtiDb {
public class UtiDb {
// Singleton stuff
private static class SingletonHolder { public static final UtiDb instance = new UtiDb(true); }
public static UtiDb getInstance() { return SingletonHolder.instance; }
Expand Down

0 comments on commit b463497

Please sign in to comment.