incorrect @NotNull/@Nullable annotations removed (our annotations aren't available in 'instrumentation-util' module)

This commit is contained in:
nik
2015-09-23 19:17:46 +03:00
parent c57fa18eaa
commit 874c22d917
@@ -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;