HHH-13874 - Deprecating methods that will be removed soon
Two methods that are dropped in v6.0 are now marked as deprecated in this commit. As discussed in the removal PR https://github.com/hibernate/hibernate-orm/pull/3229
This commit is contained in:
parent
e9df1cb626
commit
c4bd5937e3
|
@ -156,6 +156,7 @@ public abstract class Constraint implements RelationalModel, Exportable, Seriali
|
|||
return columns.iterator();
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public Iterator<Column> columnIterator() {
|
||||
return columns.iterator();
|
||||
}
|
||||
|
|
|
@ -236,6 +236,7 @@ public abstract class BaseCoreFunctionalTestCase extends BaseUnitTestCase {
|
|||
return NO_MAPPINGS;
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
protected String[] getXmlFiles() {
|
||||
// todo : rename to getOrmXmlFiles()
|
||||
return NO_MAPPINGS;
|
||||
|
|
Loading…
Reference in New Issue