Skip to content

Commit

Permalink
fix: Linux.Pid equals override (#5509)
Browse files Browse the repository at this point in the history
(cherry picked from commit 00a9913)
  • Loading branch information
mattdibi authored and github-actions[bot] committed Nov 5, 2024
1 parent 9ac6272 commit f3cf8f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public boolean equals(Object obj) {
return false;
}
LinuxPid other = (LinuxPid) obj;
return this.pid != other.pid;
return this.pid == other.pid;
}

}
}

0 comments on commit f3cf8f9

Please sign in to comment.