Skip to content

Commit

Permalink
0002412: Export of configuration as sql from the config > overview
Browse files Browse the repository at this point in the history
causes sync and registration to stop working
  • Loading branch information
chenson42 committed Oct 16, 2015
1 parent 3602151 commit fefdf4b
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -84,14 +84,14 @@ public static final List<String> getTables(String tablePrefix) {
if (tablesWithPrefix == null) {
tablesWithPrefix = populateAllTables(tablePrefix);
}
return tablesWithPrefix;
return new ArrayList<String>(tablesWithPrefix);
}

public static final List<String> getConfigTables(String tablePrefix) {
if (configTablesWithPrefix == null) {
configTablesWithPrefix = populateConfigTables(tablePrefix);
}
return configTablesWithPrefix;
return new ArrayList<String>(configTablesWithPrefix);
}

public static final List<String> getTablesWithoutPrefix() {
Expand Down

0 comments on commit fefdf4b

Please sign in to comment.