Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraradermache2011-07-04 14:01:48 +0000
committeraradermache2011-07-04 14:01:48 +0000
commit18ef6c6e9f42bcf97ca5b97b4267e8ca05a1eb28 (patch)
tree6c3dbd0fb666daa27512f274690755b8eee47c09
parent76d4457b9f33a12ebd5d3750e6206163103b6ca7 (diff)
downloadorg.eclipse.papyrus-18ef6c6e9f42bcf97ca5b97b4267e8ca05a1eb28.tar.gz
org.eclipse.papyrus-18ef6c6e9f42bcf97ca5b97b4267e8ca05a1eb28.tar.xz
org.eclipse.papyrus-18ef6c6e9f42bcf97ca5b97b4267e8ca05a1eb28.zip
Removed debug message
-rw-r--r--plugins/uml/org.eclipse.papyrus.diagram.common/src/org/eclipse/papyrus/diagram/common/resourceupdate/PartActivationListener.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/uml/org.eclipse.papyrus.diagram.common/src/org/eclipse/papyrus/diagram/common/resourceupdate/PartActivationListener.java b/plugins/uml/org.eclipse.papyrus.diagram.common/src/org/eclipse/papyrus/diagram/common/resourceupdate/PartActivationListener.java
index bdc2e419db6..352645109fa 100644
--- a/plugins/uml/org.eclipse.papyrus.diagram.common/src/org/eclipse/papyrus/diagram/common/resourceupdate/PartActivationListener.java
+++ b/plugins/uml/org.eclipse.papyrus.diagram.common/src/org/eclipse/papyrus/diagram/common/resourceupdate/PartActivationListener.java
@@ -69,9 +69,6 @@ public class PartActivationListener implements IPartListener {
// don't use (part == editor.getSite().getPart()), since different views (e.g. model explorer or property)
// of an active editor may actually be selected
IMultiDiagramEditor activeEditor = EditorUtils.getMultiDiagramEditor();
- if(editor == activeEditor) {
- System.out.println("activate: " + editor.getTitle());
- }
if((editor == activeEditor) && modifiedMainResource) {
switch(delta.getKind()) {

Back to the top