langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/Resolve.java
changeset 32949 7e0f345e64a8
parent 32709 55d136799f79
child 32951 a098b538296c
equal deleted inserted replaced
32917:8392405ab038 32949:7e0f345e64a8
  2424             @Override
  2424             @Override
  2425             public Symbol baseSymbol() {
  2425             public Symbol baseSymbol() {
  2426                 return spMethod;
  2426                 return spMethod;
  2427             }
  2427             }
  2428         };
  2428         };
  2429         polymorphicSignatureScope.enter(msym);
  2429         if (!mtype.isErroneous()) { // Cache only if kosher.
       
  2430             polymorphicSignatureScope.enter(msym);
       
  2431         }
  2430         return msym;
  2432         return msym;
  2431     }
  2433     }
  2432 
  2434 
  2433     /** Resolve a qualified method identifier, throw a fatal error if not
  2435     /** Resolve a qualified method identifier, throw a fatal error if not
  2434      *  found.
  2436      *  found.