Minor: log class of element in assert message

This commit is contained in:
Nikolay Krasko
2015-05-18 15:42:33 +03:00
parent 9c507ec9cb
commit 0108205367
@@ -31,7 +31,8 @@ public class JavaConstructorImpl extends JavaMemberImpl<PsiMethod> implements Ja
public JavaConstructorImpl(@NotNull PsiMethod psiMethod) {
super(psiMethod);
assert psiMethod.isConstructor() :
"PsiMethod which is not a constructor should not be wrapped in JavaConstructorImpl: " + psiMethod.getName();
"PsiMethod which is not a constructor should not be wrapped in JavaConstructorImpl: " +
psiMethod.getName() + " " + psiMethod.getClass().getName();
}
@NotNull