EA-69262 - NPE: DebuggerTreeNodeExpression.substituteThis
authorEgor.Ushakov <egor.ushakov@jetbrains.com>
Mon, 22 Jun 2015 10:09:27 +0000 (13:09 +0300)
committerEgor.Ushakov <egor.ushakov@jetbrains.com>
Mon, 22 Jun 2015 10:09:27 +0000 (13:09 +0300)
java/debugger/impl/src/com/intellij/debugger/ui/impl/watch/DebuggerTreeNodeExpression.java

index 3695d0c462b0fd6c36243230011898a3fb2e57c8..df04d5a53eff58f9716b81038eacc076daf1fe9f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000-2009 JetBrains s.r.o.
+ * Copyright 2000-2015 JetBrains s.r.o.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -34,6 +34,7 @@ import com.intellij.util.IncorrectOperationException;
 import com.sun.jdi.ObjectReference;
 import com.sun.jdi.ReferenceType;
 import com.sun.jdi.Value;
+import org.jetbrains.annotations.Nullable;
 
 /**
  * User: lex
@@ -147,8 +148,10 @@ public class DebuggerTreeNodeExpression {
       return false;
     }
 
-  public static PsiExpression substituteThis(PsiExpression expressionWithThis, PsiExpression howToEvaluateThis, Value howToEvaluateThisValue)
+  @Nullable
+  public static PsiExpression substituteThis(@Nullable PsiExpression expressionWithThis, PsiExpression howToEvaluateThis, Value howToEvaluateThisValue)
     throws EvaluateException {
+    if (expressionWithThis == null) return null;
     PsiExpression result = (PsiExpression)expressionWithThis.copy();
 
     PsiClass thisClass = PsiTreeUtil.getContextOfType(result, PsiClass.class, true);