[jOOQ/jOOQ#9807] Java 6 compatibility fix
This commit is contained in:
parent
9ecb8a8caa
commit
7daa6b365f
@ -2286,7 +2286,7 @@ public abstract class AbstractDatabase implements Database {
|
||||
* Retrieve ALL relations from the database.
|
||||
*/
|
||||
protected final Relations getRelations0() {
|
||||
DefaultRelations result = new DefaultRelations();
|
||||
final DefaultRelations result = new DefaultRelations();
|
||||
|
||||
if (getIncludePrimaryKeys()) {
|
||||
onError(ERROR, "Error while fetching primary keys", new ExceptionRunnable() {
|
||||
|
||||
@ -182,22 +182,22 @@ implements TableDefinition {
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* non-final */ boolean isTemporary() {
|
||||
public final boolean isTemporary() {
|
||||
return tableType == TableType.TEMPORARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* non-final */ boolean isView() {
|
||||
public final boolean isView() {
|
||||
return tableType == TableType.VIEW;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* non-final */ boolean isMaterializedView() {
|
||||
public final boolean isMaterializedView() {
|
||||
return tableType == TableType.MATERIALIZED_VIEW;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* non-final */ boolean isTableValuedFunction() {
|
||||
public final boolean isTableValuedFunction() {
|
||||
return tableType == TableType.FUNCTION;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user