Skip to content

Commit

Permalink
fix: Linux.Pid equals override [backport release-5.6.0] (#5514)
Browse files Browse the repository at this point in the history
fix: Linux.Pid equals override (#5509)

(cherry picked from commit 00a9913)

Co-authored-by: Mattia Dal Ben <[email protected]>
  • Loading branch information
eclipse-kura-bot and mattdibi authored Nov 5, 2024
1 parent 47adbf1 commit e2bba23
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 e2bba23

Please sign in to comment.