Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java
index 75c0f1bad50..3cfe21181b2 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/BootStrapUser.java
@@ -12,7 +12,7 @@
package org.eclipse.osee.framework.skynet.core;
import org.eclipse.osee.framework.core.data.SystemUser;
-import org.eclipse.osee.framework.core.exception.OseeDataStoreException;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
/**
* @author Ryan D. Brooks
@@ -21,14 +21,11 @@ public class BootStrapUser extends User {
public static BootStrapUser instance;
- private BootStrapUser() throws OseeDataStoreException {
+ private BootStrapUser() throws OseeCoreException {
super(null, null, null, null, null);
}
- /**
- * @return the instance
- */
- public static BootStrapUser getInstance() throws OseeDataStoreException {
+ public static BootStrapUser getInstance() throws OseeCoreException {
if (instance == null) {
instance = new BootStrapUser();
}

Back to the top