Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2010-12-17 23:08:54 +0000
committerRyan D. Brooks2010-12-17 23:08:54 +0000
commit10effceb7113652237bec1d2449bef1739ae651e (patch)
tree457c9de8b0962b74d32e001da2aead2cf00d4150
parent24189be4da5fe4ca6eb4cf2fd909ec4759817245 (diff)
downloadorg.eclipse.osee-10effceb7113652237bec1d2449bef1739ae651e.tar.gz
org.eclipse.osee-10effceb7113652237bec1d2449bef1739ae651e.tar.xz
org.eclipse.osee-10effceb7113652237bec1d2449bef1739ae651e.zip
refactor: Remove duplicate class OteUtil
-rw-r--r--plugins/org.eclipse.osee.ote.core/OteUtil.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/OteUtil.java b/plugins/org.eclipse.osee.ote.core/OteUtil.java
deleted file mode 100644
index 52eed28ef62..00000000000
--- a/plugins/org.eclipse.osee.ote.core/OteUtil.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package lba.ote.server.core;
-
-
-public class OteUtil {
-
- public static String generateBundleVersionString(String bundleSpecificVersion, String symbolicName, String version, byte[] md5){
- StringBuilder sb = new StringBuilder();
- if(bundleSpecificVersion != null){
- sb.append(bundleSpecificVersion);
- sb.append("_");
- }
- sb.append(symbolicName);
- sb.append("_");
- sb.append(version);
- sb.append("_");
- for(byte b:md5){
- sb.append(String.format("%X", b));
- }
- return sb.toString();
- }
-}

Back to the top