Skip to content

Commit

Permalink
HHH-16687 Remove unused internal interface ComparableEntityAction
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed May 26, 2023
1 parent c9457db commit 21b1c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Gavin King
*/
public abstract class EntityAction
implements ComparableEntityAction, Executable, Serializable, AfterTransactionCompletionProcess {
implements Comparable<EntityAction>, Executable, Serializable, AfterTransactionCompletionProcess {

private final String entityName;
private final Object id;
Expand Down Expand Up @@ -151,7 +151,7 @@ public String toString() {
}

@Override
public int compareTo(ComparableEntityAction action) {
public int compareTo(EntityAction action) {
//sort first by entity name
final int roleComparison = entityName.compareTo( action.getEntityName() );
return roleComparison != 0
Expand Down

0 comments on commit 21b1c71

Please sign in to comment.