Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.debug.core/.options2
-rw-r--r--org.eclipse.debug.ui/.options1
-rw-r--r--org.eclipse.debug.ui/build.properties3
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPlugin.java11
4 files changed, 2 insertions, 15 deletions
diff --git a/org.eclipse.debug.core/.options b/org.eclipse.debug.core/.options
index a3e35f6ef..086a0226f 100644
--- a/org.eclipse.debug.core/.options
+++ b/org.eclipse.debug.core/.options
@@ -1 +1 @@
-org.eclipse.debug.core/debug=true \ No newline at end of file
+org.eclipse.debug.core/debug=false \ No newline at end of file
diff --git a/org.eclipse.debug.ui/.options b/org.eclipse.debug.ui/.options
deleted file mode 100644
index 03af25da9..000000000
--- a/org.eclipse.debug.ui/.options
+++ /dev/null
@@ -1 +0,0 @@
- org.eclipse.debug.ui/debug=true \ No newline at end of file
diff --git a/org.eclipse.debug.ui/build.properties b/org.eclipse.debug.ui/build.properties
index 6b84fa68c..45817f1eb 100644
--- a/org.eclipse.debug.ui/build.properties
+++ b/org.eclipse.debug.ui/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2003 IBM Corporation and others.
+# Copyright (c) 2000, 2005 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Common Public License v1.0
# which accompanies this distribution, and is available at
@@ -9,7 +9,6 @@
# IBM Corporation - initial API and implementation
###############################################################################
bin.includes = icons/,\
- .options,\
plugin.xml,\
plugin.properties,\
*.jar,\
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPlugin.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPlugin.java
index e14c68340..96c50b841 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPlugin.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/DebugUIPlugin.java
@@ -507,17 +507,6 @@ public class DebugUIPlugin extends AbstractUIPlugin implements ILaunchListener {
}
/**
- * Logs the given message if in debug mode.
- *
- * @param String message to log
- */
- public static void logDebugMessage(String message) {
- if (getDefault().isDebugging()) {
- logErrorMessage(message);
- }
- }
-
- /**
* Logs an internal error with the specified message.
*
* @param message the error message to log

Back to the top