1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

Code documentation enhancement

This commit is contained in:
John Cortell 2009-09-03 22:24:40 +00:00
parent 86ce7f042e
commit 88bfb422e7

View file

@ -73,7 +73,13 @@ public class DsfPlugin extends Plugin {
public static BundleContext getBundleContext() {
return fgBundleContext;
}
/**
* Writes [message] to stdout, but only if the top level 'debug' tracing
* option for this plugin has been turned on
*
* @param message
*/
public static void debug(String message) {
if (DEBUG) {
System.out.println(message);