Fixed typo

This commit is contained in:
Lukas Eder 2013-01-06 18:15:20 +01:00
parent 43cb9fb520
commit 3ceea69651

View File

@ -88,9 +88,9 @@ class MetaImpl implements Meta {
public final List<Catalog> getCatalogs() {
try {
List<Catalog> result = new ArrayList<Catalog>();
Result<Record> schemas = executor.fetch(meta().getCatalogs());
Result<Record> catalogs = executor.fetch(meta().getCatalogs());
for (String name : schemas.getValues(0, String.class)) {
for (String name : catalogs.getValues(0, String.class)) {
result.add(new MetaCatalog(name));
}