Re: RFR: 8203035: Implement equals() and hashCode() for Throwable

2023-01-17 Thread Stuart Marks
On Sat, 10 Dec 2022 18:11:30 GMT, Victor Toni wrote: > Being able to compare instances of Throwable allows simple detection of > exceptions raised by the same circumstances. Comparison allows for reduction > of excessive logging e.g. in hotspots without requiring custom code to > compare

Re: RFR: 8203035: Implement equals() and hashCode() for Throwable

2023-01-10 Thread Alan Bateman
On Sat, 10 Dec 2022 18:11:30 GMT, Victor Toni wrote: > Being able to compare instances of Throwable allows simple detection of > exceptions raised by the same circumstances. Comparison allows for reduction > of excessive logging e.g. in hotspots without requiring custom code to > compare

RFR: 8203035: Implement equals() and hashCode() for Throwable

2023-01-09 Thread Victor Toni
Being able to compare instances of Throwable allows simple detection of exceptions raised by the same circumstances. Comparison allows for reduction of excessive logging e.g. in hotspots without requiring custom code to compare Throwables. - Commit messages: - 8203035: Implement