private Binding createImplicitBinding(Key<?> key, boolean optional) { JClassType rawClassType = keyUtil.getRawClassType(key); if (rawClassType.equals(ginjectorInterface)) { return ginjectorBindingProvider.get(); } ...... }
In the above snippet, I set a breakpoint in if (rawClassType.equals(ginjectorInterface)) with the condition rawClassType==null , hoping that the thread will only be suspended when it is executed. But I keep getting the error:
eclipse Grades must contain either an expression
Can someone tell me why? By the way, JClassType is an interface.
source share