diff --git a/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java b/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java index 96e4b64aecf6..e24067f711d3 100644 --- a/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java +++ b/java/debugger/impl/src/com/intellij/debugger/jdi/StackFrameProxyImpl.java @@ -237,6 +237,7 @@ public class StackFrameProxyImpl extends JdiProxy implements StackFrameProxy { return myThisReference; } + @NotNull public List visibleVariables() throws EvaluateException { DebuggerManagerThreadImpl.assertIsManagerThread(); InvalidStackFrameException error = null; @@ -312,6 +313,7 @@ public class StackFrameProxyImpl extends JdiProxy implements StackFrameProxy { throw new EvaluateException(error.getMessage(), error); } + @NotNull public List getArgumentValues() throws EvaluateException { DebuggerManagerThreadImpl.assertIsManagerThread(); InvalidStackFrameException error = null; diff --git a/java/jdkAnnotations/com/sun/jdi/annotations.xml b/java/jdkAnnotations/com/sun/jdi/annotations.xml index 8d2899ad4598..1f5ce668732d 100644 --- a/java/jdkAnnotations/com/sun/jdi/annotations.xml +++ b/java/jdkAnnotations/com/sun/jdi/annotations.xml @@ -2,4 +2,20 @@ + + + + + + + + + + + + + + + \ No newline at end of file