Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-releng-dev] [eclipse-build]Build N20060319-0010 (Timestamp: 200603190010):Compile errors in build


The cause of these compile errors was a typo in the bootclasspath introduced when I moved to using the Sun 1.4.2_10 and 1.5.0_06 libraries late last week.  This has been fixed for the next build.

Sonia



eclipse-releng@xxxxxxxxxxx
Sent by: platform-releng-dev-bounces@xxxxxxxxxxx

03/19/2006 12:50 AM

Please respond to
"Eclipse platform release engineering list."

To
platform-releng-dev@xxxxxxxxxxx
cc
Subject
[platform-releng-dev] [eclipse-build]Build N20060319-0010        (Timestamp: 200603190010):Compile errors in build





Build N20060319-0010 (Timestamp: 200603190010):  Compile errors in build.  See attached compile logs._______________________________________________
platform-releng-dev mailing list
platform-releng-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-releng-dev

Title: Compiler log for org.eclipse.equinox.http_1.0.0.N20060319-0010

Compiler log for org.eclipse.equinox.http_1.0.0.N20060319-0010 : @dot.bin.xml

TOTAL : ERRORS: 9, WARNINGS: 1

/src/org/eclipse/equinox/socket/https/HttpsServerSocket.java : 9 errors :

1. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 15)
import javax.net.ServerSocketFactory;
The import javax.net cannot be resolved
2. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 32)
protected ServerSocketFactory ssf = null;
ServerSocketFactory cannot be resolved to a type
3. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 78)
while (this.ssf == null) {
ssf cannot be resolved or is not a field
4. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 90)
ss = ssf.createServerSocket(port, backlog, bindAddr);
ssf cannot be resolved
5. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 131)
if (ssf == null) {
ssf cannot be resolved
6. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 132)
ssf = (ServerSocketFactory) context.getService(reference);
ssf cannot be resolved
7. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 132)
ssf = (ServerSocketFactory) context.getService(reference);
ServerSocketFactory cannot be resolved to a type
8. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 134)
return ssf;
ssf cannot be resolved
9. ERROR in /src/org/eclipse/equinox/socket/https/HttpsServerSocket.java
 (at line 144)
ssf = null;
ssf cannot be resolved

/src/org/eclipse/equinox/http/StaticDataReader.java : 1 warning :

1. WARNING in /src/org/eclipse/equinox/http/StaticDataReader.java
 (at line 173)
private static Hashtable parseAliases(InputStream in) {
The method parseAliases(InputStream) from the type StaticDataReader is never used locally
Title: Compiler log for org.eclipse.help.base_3.2.0.N20060319-0010

Compiler log for org.eclipse.help.base_3.2.0.N20060319-0010 : @dot.bin.xml

TOTAL : ERRORS: 6, WARNINGS: 0

/src/org/eclipse/help/internal/standalone/EclipseConnection.java : 6 errors :

1. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 17)
import javax.net.ssl.HostnameVerifier;
The import javax.net cannot be resolved
2. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 18)
import javax.net.ssl.HttpsURLConnection;
The import javax.net cannot be resolved
3. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 54)
if (connection instanceof HttpsURLConnection) {
HttpsURLConnection cannot be resolved to a type
4. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 55)
HttpsURLConnection secureConnection = (HttpsURLConnection) connection;
HttpsURLConnection cannot be resolved to a type
5. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 55)
HttpsURLConnection secureConnection = (HttpsURLConnection) connection;
HttpsURLConnection cannot be resolved to a type
6. ERROR in /src/org/eclipse/help/internal/standalone/EclipseConnection.java
 (at line 59)
secureConnection.setHostnameVerifier(new HostnameVerifier() {
HostnameVerifier cannot be resolved to a type

Back to the top