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:
parent
816cb73439
commit
e25fa3c06e
3 changed files with 9 additions and 10 deletions
|
@ -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);
|
||||
// }
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
// }
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue