1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-02 22:55:26 +02:00

cleanup: some prints and non-nls warnings

This commit is contained in:
David McKnight 2009-01-05 15:35:19 +00:00
parent c6ef422d99
commit db1f37d6f2
3 changed files with 2 additions and 7 deletions

View file

@ -247,13 +247,8 @@ public class RemoteClassLoader extends ClassLoader
}
else if (!request.isLoaded())
{
System.out.println("request is not loaded");
// the class has been requested before, but it has not yet been received
// System.out.println(className + " already requested but not loaded. Waiting for request to load.");
System.out.println("waiting for response...");
request.waitForResponse(); // just wait until the class is received
System.out.println("...finished waiting for response");
// after the class is received, get it from the repository and return it
// or if the class failed to be received, throw an exception

View file

@ -125,7 +125,7 @@ public abstract class Receiver extends SecuredThread implements IDataStorePrefer
// is this an unexpected exit?
if (_dataStore.isConnected()){
// server exited without client exit
Exception e = new Exception("Server terminated unexpectedly");
Exception e = new Exception("Server terminated unexpectedly"); //$NON-NLS-1$
handleError(e);
}
}

View file

@ -207,7 +207,7 @@ public class MinerLoader implements ISchemaRegistry
_minerList.add(name);
}
else {
System.out.println("miner is null");
System.out.println("miner is null"); //$NON-NLS-1$
}
}
}