Compiler Report

Compiler: Eclipse Compiler for Java(TM) Version: 0.C58, 3.8.0

Number of source files: 157 Number of classfiles: 164

Problems: 3 (Errors: 0 Warnings: 3 )

Source File: org/eclipse/wst/ws/internal/registry/RegistryService.java
1. WARNING: UnclosedCloseable

Resource leak: 'outputStream' is never closed

RegistryService.java :

436 : outputStream = new FileOutputStream(file);

Source File: org/eclipse/wst/ws/internal/util/WSDLCopier.java
1. WARNING: NonStaticAccessToStaticMethod

The static method serialize(OutputStream, Document, String) from the type WSDLResourceImpl should be accessed in a static way

WSDLCopier.java :

518 : resource.serialize(os, document, document.getXmlEncoding());

2. WARNING: LocalVariableIsNeverUsed

The value of the local variable document is not used

WSDLCopier.java :

531 : Document document = xsdSchema.getDocument();