Compiler log for org.eclipse.core.runtime_3.9.0.v20130326-1255 : @dot.xml

TOTAL : ERRORS: 0, WARNINGS: 8

errors others warnings forbidden warnings discouraged warnings

ERRORS

top others warnings forbidden warnings discouraged warnings

OTHER WARNINGS

top errors forbidden warnings discouraged warnings

/src/org/eclipse/core/internal/runtime/AuthorizationHandler.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/core/internal/runtime/AuthorizationHandler.java
 (at line 135)
method.invoke(keyring, null);
The argument of type null should explicitly be cast to Object[] for the invocation of the varargs method invoke(Object, Object...) from type Method. It could alternatively be cast to Object for a varargs invocation

/src/org/eclipse/core/runtime/Plugin.java : 1 warning :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/core/runtime/Plugin.java
 (at line 631)
m.invoke(descriptor, null);
The argument of type null should explicitly be cast to Object[] for the invocation of the varargs method invoke(Object, Object...) from type Method. It could alternatively be cast to Object for a varargs invocation

/src/org/eclipse/core/runtime/Platform.java : 2 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/core/runtime/Platform.java
 (at line 759)
Method getPluginRegistry = oldInternalPlatform.getMethod("getPluginRegistry", null); //$NON-NLS-1$
The argument of type null should explicitly be cast to Class[] for the invocation of the varargs method getMethod(String, Class...) from type Class. It could alternatively be cast to Class for a varargs invocation
2. WARNING in /src/org/eclipse/core/runtime/Platform.java
 (at line 760)
return (IPluginRegistry) getPluginRegistry.invoke(oldInternalPlatform, null);
The argument of type null should explicitly be cast to Object[] for the invocation of the varargs method invoke(Object, Object...) from type Method. It could alternatively be cast to Object for a varargs invocation

/src/org/eclipse/core/internal/runtime/CompatibilityHelper.java : 4 warnings :

OTHER WARNINGS
1. WARNING in /src/org/eclipse/core/internal/runtime/CompatibilityHelper.java
 (at line 83)
Method setPlugin = descriptor.getClass().getMethod("setActive", null); //$NON-NLS-1$
The argument of type null should explicitly be cast to Class[] for the invocation of the varargs method getMethod(String, Class...) from type Class<capture#3-of ? extends IPluginDescriptor>. It could alternatively be cast to Class for a varargs invocation
2. WARNING in /src/org/eclipse/core/internal/runtime/CompatibilityHelper.java
 (at line 84)
setPlugin.invoke(descriptor, null);
The argument of type null should explicitly be cast to Object[] for the invocation of the varargs method invoke(Object, Object...) from type Method. It could alternatively be cast to Object for a varargs invocation
3. WARNING in /src/org/eclipse/core/internal/runtime/CompatibilityHelper.java
 (at line 97)
Method setPlugin = descriptor.getClass().getMethod("hasPluginObject", null); //$NON-NLS-1$
The argument of type null should explicitly be cast to Class[] for the invocation of the varargs method getMethod(String, Class...) from type Class<capture#4-of ? extends IPluginDescriptor>. It could alternatively be cast to Class for a varargs invocation
4. WARNING in /src/org/eclipse/core/internal/runtime/CompatibilityHelper.java
 (at line 98)
result = (Boolean) setPlugin.invoke(descriptor, null);
The argument of type null should explicitly be cast to Object[] for the invocation of the varargs method invoke(Object, Object...) from type Method. It could alternatively be cast to Object for a varargs invocation

FORBIDDEN ACCESS WARNINGS

top errors others warnings discouraged warnings

DISCOURAGED ACCESS WARNINGS

top errors others warnings forbidden warnings