Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,13 @@ public Iterator<Column> getColumnIterator() {
return columns.iterator();
}

/**
* This is a duplicate method, that has been removed in v.6.0.
* {@link #getColumnIterator()} is the one that will stay.
*
* @deprecated (Since 6.0) use {@link #getColumnIterator()} instead.
*/
@Deprecated
public Iterator<Column> columnIterator() {
return columns.iterator();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,11 @@ protected String[] getAnnotatedPackages() {
return NO_MAPPINGS;
}

/**
*
* @deprecated (Since 6.0) this method will be renamed to getOrmXmlFile().
*/
@Deprecated
protected String[] getXmlFiles() {
// todo : rename to getOrmXmlFiles()
return NO_MAPPINGS;
Expand Down