Skip to content

Commit

Permalink
#402: Change order of the modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvanaken committed Nov 8, 2023
1 parent 481654b commit 4203c8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/io/parsingdata/metal/ImmutableObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ public abstract class ImmutableObject {

private Integer hash;

abstract public int cachingHashCode();
public abstract int cachingHashCode();

@Override
abstract public boolean equals(final Object obj);
public abstract boolean equals(final Object obj);

@Override
public int hashCode() {
Expand Down

0 comments on commit 4203c8f

Please sign in to comment.