mirror of
https://github.com/github/codeql.git
synced 2026-05-01 03:35:13 +02:00
Don't introduce @NotNull on Kotlin methods that already have that annotation
This usually can't happen, but delegates pointing at Java appear to be synthesised with this normally-hidden annotation
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import org.jetbrains.annotations.*;
|
||||
import zpkg.A;
|
||||
|
||||
public class AnnotatedMethods {
|
||||
public class AnnotatedMethods implements AnnotatedInterface {
|
||||
|
||||
public @A @NotNull String notNullAnnotated(@A @NotNull String param) { return param; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user