Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2014-01-26 05:36:43 +0000
committerRyan D. Brooks2014-01-26 05:36:43 +0000
commit8a809d63463c60be17a6126e72a7f1fcf0fd8c94 (patch)
treeb7dfaa4a102942758f33211c32243374a1fc331b /plugins/org.eclipse.osee.framework.core
parent1f8fdec214a4d6756dfd5ff4f711d01cb4ca4700 (diff)
downloadorg.eclipse.osee-8a809d63463c60be17a6126e72a7f1fcf0fd8c94.tar.gz
org.eclipse.osee-8a809d63463c60be17a6126e72a7f1fcf0fd8c94.tar.xz
org.eclipse.osee-8a809d63463c60be17a6126e72a7f1fcf0fd8c94.zip
refactor: Remove unused CoreTranslatorId enum values
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreTranslatorId.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreTranslatorId.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreTranslatorId.java
index 6e0417dd4d9..d7e4797219c 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreTranslatorId.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/enums/CoreTranslatorId.java
@@ -47,14 +47,10 @@ public enum CoreTranslatorId implements ITranslatorId {
BRANCH_CREATION_RESPONSE,
TABLE_DATA,
- STATUS_RESPONSE,
-
- SEARCH_REQUEST,
- SEARCH_RESPONSE;
+ STATUS_RESPONSE;
@Override
public String getKey() {
return this.name();
}
-
}

Back to the top