mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
cleanup: some prints and non-nls warnings
This commit is contained in:
parent
c6ef422d99
commit
db1f37d6f2
3 changed files with 2 additions and 7 deletions
|
@ -247,13 +247,8 @@ public class RemoteClassLoader extends ClassLoader
|
||||||
}
|
}
|
||||||
else if (!request.isLoaded())
|
else if (!request.isLoaded())
|
||||||
{
|
{
|
||||||
System.out.println("request is not loaded");
|
|
||||||
// the class has been requested before, but it has not yet been received
|
// 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
|
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
|
// after the class is received, get it from the repository and return it
|
||||||
// or if the class failed to be received, throw an exception
|
// or if the class failed to be received, throw an exception
|
||||||
|
|
|
@ -125,7 +125,7 @@ public abstract class Receiver extends SecuredThread implements IDataStorePrefer
|
||||||
// is this an unexpected exit?
|
// is this an unexpected exit?
|
||||||
if (_dataStore.isConnected()){
|
if (_dataStore.isConnected()){
|
||||||
// server exited without client exit
|
// server exited without client exit
|
||||||
Exception e = new Exception("Server terminated unexpectedly");
|
Exception e = new Exception("Server terminated unexpectedly"); //$NON-NLS-1$
|
||||||
handleError(e);
|
handleError(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -207,7 +207,7 @@ public class MinerLoader implements ISchemaRegistry
|
||||||
_minerList.add(name);
|
_minerList.add(name);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
System.out.println("miner is null");
|
System.out.println("miner is null"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue