Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java')
-rw-r--r--plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java b/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java
index 50ab964ed64..5e58b690009 100644
--- a/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java
+++ b/plugins/org.eclipse.osee.framework.database.init/src/org/eclipse/osee/framework/database/init/SkynetDbBranchDataImport.java
@@ -11,7 +11,6 @@
package org.eclipse.osee.framework.database.init;
import java.io.File;
-import java.io.IOException;
import java.net.URI;
import java.net.URL;
import java.util.ArrayList;
@@ -72,8 +71,8 @@ public class SkynetDbBranchDataImport implements IDbInitializationTask {
//TODO not yet supported importData.getSelectedBranches();
HttpBranchExchange.importBranches(importFile.toURI().toASCIIString(), true, true);
} catch (OseeDataStoreException ex) {
- OseeLog.logf(DatabaseInitActivator.class, Level.SEVERE,
- ex, "Exception while importing branch: [%s]", importData);
+ OseeLog.logf(DatabaseInitActivator.class, Level.SEVERE, ex, "Exception while importing branch: [%s]",
+ importData);
throw ex;
}
}
@@ -120,7 +119,7 @@ public class SkynetDbBranchDataImport implements IDbInitializationTask {
return toReturn;
}
- private File getExchangeFile(String bundleName, String exchangeFile) throws IOException, OseeCoreException {
+ private File getExchangeFile(String bundleName, String exchangeFile) throws OseeCoreException {
if (exchangeFile.endsWith("zip") != true) {
throw new OseeArgumentException(String.format("Branch data file is invalid [%s] ", exchangeFile));
}

Back to the top