Skip to content

Commit

Permalink
fix ls memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
brachy84 committed Nov 9, 2024
1 parent 98d88ea commit a97bd4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected SourceUnit getSourceUnit() {

@Override
public int hashCode(ASTNode o) {
return o.hashCode();
return System.identityHashCode(o);
}

@Override
Expand Down

0 comments on commit a97bd4b

Please sign in to comment.