Skip to content

Commit

Permalink
Fix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
am009 authored and MatthewShao committed Jul 18, 2022
1 parent 4326030 commit c625991
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/bai/env/TaintMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ public boolean equals(Object o) {
return false;
}
Source source = (Source) o;
return Objects.equals(callSite, source.callSite) && Objects.equals(context, source.context) && Objects.equals(function, source.function);
return Objects.equals(callSite, source.callSite) && Objects.equals(context, source.context)
&& Objects.equals(function, source.function);
}

@Override
Expand Down

0 comments on commit c625991

Please sign in to comment.