Compiler Report

Compiler: Eclipse Java Compiler Version: 0.959, 3.5.0 rc1

Number of source files: 15 Number of classfiles: 23

Problems: 2 (Errors: 0 Warnings: 2 )

Source File: org/eclipse/wst/common/tests/performance/internal/EclipseTestRunner.java
1. WARNING: MethodVarargsArgumentNeedCast

The argument of type Class[] 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

EclipseTestRunner.java :

293 : test = (Test)suiteMethod.invoke(null, new Class[0]); // static method

Source File: org/eclipse/wst/common/tests/performance/internal/scalability/ValidatorTestCase.java
1. WARNING: UnusedImport

The import org.eclipse.wst.validation.ValidationResults is never used

ValidatorTestCase.java :

16 : import org.eclipse.wst.validation.ValidationResults;