mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-29 11:55:40 +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;
|
return cmds;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void print(String msg) {
|
// private static void print(String msg) {
|
||||||
String name = Thread.currentThread().getName();
|
// String name = Thread.currentThread().getName();
|
||||||
System.out.println(name + ": " + msg);
|
// System.out.println(name + ": " + msg);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,8 +25,7 @@ public class GDBDebugger implements ICDebugger {
|
||||||
protected void initializeLibraries(ILaunchConfiguration config, Session session) throws CDIException {
|
protected void initializeLibraries(ILaunchConfiguration config, Session session) throws CDIException {
|
||||||
try {
|
try {
|
||||||
ICDISharedLibraryManager mgr = session.getSharedLibraryManager();
|
ICDISharedLibraryManager mgr = session.getSharedLibraryManager();
|
||||||
if ( mgr instanceof SharedLibraryManager )
|
if (mgr instanceof SharedLibraryManager) {
|
||||||
{
|
|
||||||
boolean autolib = config.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
|
boolean autolib = config.getAttribute(IMILaunchConfigurationConstants.ATTR_AUTO_SOLIB, false);
|
||||||
((SharedLibraryManager)mgr).setAutoLoadSymbols(autolib);
|
((SharedLibraryManager)mgr).setAutoLoadSymbols(autolib);
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,8 +61,8 @@ public class Queue {
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void print(String msg) {
|
// private static void print(String msg) {
|
||||||
String name = Thread.currentThread().getName();
|
// String name = Thread.currentThread().getName();
|
||||||
System.out.println(name + ": " + msg);
|
// System.out.println(name + ": " + msg);
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue