Java 6 compatibility bugfix

This commit is contained in:
lukaseder 2015-12-15 15:56:43 +01:00
parent c6a2dc15e0
commit 00394069d0

View File

@ -435,7 +435,7 @@ class MetaImpl implements Meta, Serializable {
}
}
private final Result<Record> getColumns0(String schema, String table) {
private final Result<Record> getColumns0(final String schema, final String table) {
return meta(new MetaFunction() {
@Override
public Result<Record> run(DatabaseMetaData meta) throws SQLException {
@ -505,7 +505,7 @@ class MetaImpl implements Meta, Serializable {
x
xx [/pro] */
String schema = getSchema() == null ? null : getSchema().getName();
final String schema = getSchema() == null ? null : getSchema().getName();
Result<Record> result = meta(new MetaFunction() {
@Override
public Result<Record> run(DatabaseMetaData meta) throws SQLException {