Skip to content

Commit

Permalink
chore: Fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
SaptarshiSarkar12 committed Sep 20, 2024
1 parent 141ffc8 commit 0d803aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core/src/main/java/support/Job.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public boolean fileExists() {
@Override
public boolean equals(Object obj) {
if (obj instanceof Job job) {
return Objects.equals(job.getSourceLink(), link)
&& Objects.equals(job.getDir(), dir)
&& Objects.equals(job.getFilename(), filename);
return Objects.equals(job.getSourceLink(), link) &&
Objects.equals(job.getDir(), dir) &&
Objects.equals(job.getFilename(), filename);
}
return false;
}
Expand Down

0 comments on commit 0d803aa

Please sign in to comment.