Compiler Report

Compiler: Eclipse Java Compiler Version: 0.868, 3.4.0 release candidate-2

Number of source files: 76 Number of classfiles: 206

Problems: 6 (Errors: 0 Warnings: 6 )

Source File: org/eclipse/jpt/eclipselink/ui/internal/EntityDialog.java
1. WARNING: UnusedPrivateField

The field EntityDialog.jpaProject is never read locally

EntityDialog.java :

31 : private JpaProject jpaProject;

Source File: org/eclipse/jpt/eclipselink/ui/internal/customization/EntityListComposite.java
1. WARNING: LocalVariableIsNeverUsed

The local variable entity is never read

EntityListComposite.java :

125 : String entity = this.subject().addEntity(entityName);

Source File: org/eclipse/jpt/eclipselink/ui/internal/ddlgen/EclipseLinkDDLGeneratorUi.java
1. WARNING: MethodVarargsArgumentNeedCast

The argument of type String[] should explicitly be cast to Object[] for the invocation of the varargs method format(String, Object...) from type MessageFormat. It could alternatively be cast to Object for a varargs invocation

EclipseLinkDDLGeneratorUi.java :

160 : String msg = MessageFormat.format(message, new String [] {message});

Source File: org/eclipse/jpt/eclipselink/ui/internal/ddlgen/wizards/GenerateDDLWizard.java
1. WARNING: UnusedPrivateField

The field GenerateDDLWizard.selection is never read locally

GenerateDDLWizard.java :

27 : private IStructuredSelection selection;

2. WARNING: UnusedWarningToken

Unnecessary @SuppressWarnings("restriction")

GenerateDDLWizard.java :

46 : @SuppressWarnings("restriction")

3. WARNING: LocalVariableIsNeverUsed

The local variable name is never read

GenerateDDLWizard.java :

48 : String name = getProjectConnectionProfile().getName();