error-prone icon indicating copy to clipboard operation
error-prone copied to clipboard

new check suggestion: Throwable self-suppression

Open benjaminp opened this issue 3 years ago • 0 comments

This snippet unconditionally throws an IllegalStateException and could be statically detected:

Throwable t = new Throwable();
t.addSuppressed(t);

benjaminp avatar Aug 24 '22 16:08 benjaminp