[#1544] Remove AttachableInternal.getAttachables() - Throw an

UnsupportedOperationException in AbstractQueryPart.getDialect()
This commit is contained in:
Lukas Eder 2012-07-11 21:07:40 +02:00
parent b7bb5d965a
commit b23b21c82e

View File

@ -105,7 +105,7 @@ abstract class AbstractQueryPart implements QueryPartInternal, AttachableInterna
@Override
@Deprecated
public final SQLDialect getDialect() {
return getConfiguration().getDialect();
throw new UnsupportedOperationException("This method is no longer supported");
}
/**