mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
incorrect @NotNull/@Nullable annotations removed (our annotations aren't available in 'instrumentation-util' module)
This commit is contained in:
+2
-4
@@ -16,8 +16,6 @@
|
||||
package com.intellij.compiler.notNullVerification;
|
||||
|
||||
import com.intellij.compiler.instrumentation.FailSafeMethodVisitor;
|
||||
import com.sun.istack.internal.NotNull;
|
||||
import com.sun.istack.internal.Nullable;
|
||||
import org.jetbrains.org.objectweb.asm.*;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
@@ -115,8 +113,8 @@ public class NotNullVerifyingInstrumenter extends ClassVisitor implements Opcode
|
||||
}
|
||||
|
||||
private static class NotNullState {
|
||||
@Nullable String message;
|
||||
@NotNull String exceptionType;
|
||||
String message;
|
||||
String exceptionType;
|
||||
|
||||
NotNullState(String exceptionType) {
|
||||
this.exceptionType = exceptionType;
|
||||
|
||||
Reference in New Issue
Block a user