1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

Revert "Added stack trace to diagnostic messages."

This reverts commit 5f1c234b77.

Change-Id: Ic821628d828ca3b9eeed1a723f97b48a17767419
This commit is contained in:
Sergey Prigogin 2016-12-16 21:11:44 -04:00
parent 5f1c234b77
commit 0b6dfff78c

View file

@ -53,8 +53,8 @@ public class ASTInternal {
if (binding instanceof ICInternalBinding) {
return ((ICInternalBinding) binding).getDefinition();
}
CCorePlugin.log(new Exception("ASTInternal.getDefinitionOfBinding() called for binding of type " + //$NON-NLS-1$
binding.getClass().getName()));
CCorePlugin.log("ASTInternal.getDefinitionOfBinding() called for binding of type " + //$NON-NLS-1$
binding.getClass().getName());
assert false;
return null;
}