Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Dumoulin2017-05-05 15:53:28 +0000
committerCedric Dumoulin2017-05-05 17:09:36 +0000
commite52cda92eba72b1bb114151ffe4cbfab2315e38a (patch)
tree934781ee11c5c19caf7af0d4b7942c4ad5ab0de7 /plugins/infra/core
parent0d80e11a3d43f3afc8bb750b205eef484e1dcfae (diff)
downloadorg.eclipse.papyrus-e52cda92eba72b1bb114151ffe4cbfab2315e38a.tar.gz
org.eclipse.papyrus-e52cda92eba72b1bb114151ffe4cbfab2315e38a.tar.xz
org.eclipse.papyrus-e52cda92eba72b1bb114151ffe4cbfab2315e38a.zip
515763: [infra-sashwindows] Closing a tab causes the selection of the
first tab of the first tabfolder code cleanup. Change-Id: I283134658e55fe61847c45329b752b5a61abc82e Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=515763
Diffstat (limited to 'plugins/infra/core')
-rw-r--r--plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/internal/ActivePageHistoryTracker.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/internal/ActivePageHistoryTracker.java b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/internal/ActivePageHistoryTracker.java
index 61726c79be8..db8de90bf49 100644
--- a/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/internal/ActivePageHistoryTracker.java
+++ b/plugins/infra/core/org.eclipse.papyrus.infra.core.sasheditor/src/org/eclipse/papyrus/infra/core/sasheditor/internal/ActivePageHistoryTracker.java
@@ -36,7 +36,6 @@ public class ActivePageHistoryTracker implements IPageLifeCycleEventsListener {
*/
@Override
public void pageChanged(IPage newPage) {
- // TODO Auto-generated method stub
System.out.println("pageChanged - " + newPage.getPageTitle());
}
@@ -114,7 +113,6 @@ public class ActivePageHistoryTracker implements IPageLifeCycleEventsListener {
* @return The last active page, or null if none is set in history.
*/
public IPage lastActivePage() {
- // TODO Auto-generated method stub
return history.peekFirst();
}

Back to the top