Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn F. Cook2011-08-08 20:41:21 +0000
committerRyan D. Brooks2011-08-08 20:41:21 +0000
commit0276a25446344462b279c122f44d4e020cb61780 (patch)
tree516043a39b1bdd4b0c4249eb2317c8f55e38e9ec /plugins/org.eclipse.osee.framework.ui.branch.graph/src
parentf5b92c1a4b7e2b15175187dbc8f98a4dc10c7124 (diff)
downloadorg.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.tar.gz
org.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.tar.xz
org.eclipse.osee-0276a25446344462b279c122f44d4e020cb61780.zip
refactor[bgz_354193]: Remove unused exception declarations
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.branch.graph/src')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.branch.graph/src/org/eclipse/osee/framework/ui/branch/graph/core/BranchGraphEditorInput.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.branch.graph/src/org/eclipse/osee/framework/ui/branch/graph/core/BranchGraphEditorInput.java b/plugins/org.eclipse.osee.framework.ui.branch.graph/src/org/eclipse/osee/framework/ui/branch/graph/core/BranchGraphEditorInput.java
index 444ca7c0908..39b4bea7a7d 100644
--- a/plugins/org.eclipse.osee.framework.ui.branch.graph/src/org/eclipse/osee/framework/ui/branch/graph/core/BranchGraphEditorInput.java
+++ b/plugins/org.eclipse.osee.framework.ui.branch.graph/src/org/eclipse/osee/framework/ui/branch/graph/core/BranchGraphEditorInput.java
@@ -13,7 +13,6 @@ package org.eclipse.osee.framework.ui.branch.graph.core;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.osee.framework.core.data.IOseeBranch;
import org.eclipse.osee.framework.core.enums.CoreBranches;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.model.TransactionRecord;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IPersistableElement;
@@ -31,7 +30,7 @@ public class BranchGraphEditorInput implements IEditorInput {
this.branch = branch;
}
- public BranchGraphEditorInput() throws OseeCoreException {
+ public BranchGraphEditorInput() {
this(CoreBranches.SYSTEM_ROOT);
}

Back to the top