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:
parent
86ce7f042e
commit
88bfb422e7
1 changed files with 7 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue