1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-28 19:35:36 +02:00

Comment out some method that are not used.

This commit is contained in:
Alain Magloire 2003-03-03 15:18:30 +00:00
parent 816cb73439
commit e25fa3c06e
3 changed files with 9 additions and 10 deletions

View file

@ -49,8 +49,8 @@ public class CommandQueue extends Queue {
return cmds;
}
private static void print(String msg) {
String name = Thread.currentThread().getName();
System.out.println(name + ": " + msg);
}
// private static void print(String msg) {
// String name = Thread.currentThread().getName();
// System.out.println(name + ": " + msg);
// }
}

View file

@ -25,8 +25,7 @@ public class GDBDebugger implements ICDebugger {
protected void initializeLibraries(ILaunchConfiguration config, Session session) throws CDIException {
try {
ICDISharedLibraryManager mgr = session.getSharedLibraryManager();
if ( mgr instanceof SharedLibraryManager )
{
if (mgr instanceof SharedLibraryManager) {
boolean autolib = config.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
((SharedLibraryManager)mgr).setAutoLoadSymbols(autolib);
}

View file

@ -61,8 +61,8 @@ public class Queue {
return array;
}
private static void print(String msg) {
String name = Thread.currentThread().getName();
System.out.println(name + ": " + msg);
}
// private static void print(String msg) {
// String name = Thread.currentThread().getName();
// System.out.println(name + ": " + msg);
// }
}