Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienvermeille committed Aug 23, 2024
1 parent fdec676 commit ac3443e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public abstract class BaseCaseStyle implements CaseStyle {

@Override
public boolean equals(@Nullable Object obj) {
if(obj == null){
if (obj == null) {
return false;
}
if(obj instanceof CaseStyle caseStyle){
if (obj instanceof CaseStyle caseStyle) {
return equals(caseStyle);
} else {
return false;
Expand Down

0 comments on commit ac3443e

Please sign in to comment.