-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't use unconditional pattern in instanceof for non-null checks
- Can't do something like this in Java 17: if(object.toString() instanceof String s) - This is allowed in Java 21 - In Eclipse 4.35+ these give an "Expression type cannot be a subtype of the Pattern type" compile error. Was OK in earlier versions of Eclipse. - See eclipse-jdt/eclipse.jdt.core#3478
- Loading branch information
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters