[#6992] Add Catalog.getComment()

This commit is contained in:
lukaseder 2018-01-04 16:44:25 +01:00
parent 0e0cd604c6
commit ce4081d440

View File

@ -93,8 +93,8 @@ public class CatalogImpl extends AbstractQueryPart implements Catalog {
}
@Override
public String getComment() {
return null;
public final String getComment() {
return comment == null ? null : comment.getComment();
}
@Override