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/artifact/factory/ArtifactFactoryManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/factory/ArtifactFactoryManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/factory/ArtifactFactoryManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/factory/ArtifactFactoryManager.java
index 31e51ef5771..b64c6326f6d 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/factory/ArtifactFactoryManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/artifact/factory/ArtifactFactoryManager.java
@@ -32,7 +32,7 @@ public final class ArtifactFactoryManager {
private static final String CLASSNAME_ATTRIBUTE = "classname";
private static final ExtensionDefinedObjects<ArtifactFactory> extensionDefinedObjects =
- new ExtensionDefinedObjects<ArtifactFactory>(EXTENSION_ID, ARTIFACT_FACTORY_EXTENSION, CLASSNAME_ATTRIBUTE);
+ new ExtensionDefinedObjects<ArtifactFactory>(EXTENSION_ID, ARTIFACT_FACTORY_EXTENSION, CLASSNAME_ATTRIBUTE);
private static final DefaultArtifactFactory defaultArtifactFactory = new DefaultArtifactFactory();
private static Set<ArtifactType> eternalArtifactTypes = null;
@@ -48,9 +48,9 @@ public final class ArtifactFactoryManager {
responsibleFactory = factory;
} else {
OseeLog.log(
- Activator.class,
- Level.SEVERE,
- "Multiple ArtifactFactories [" + responsibleFactory + "][" + factory + "]responsible for same artifact type [" + artifactTypeName + "]. Defaulting to DefaultArtifactFactory.");
+ Activator.class,
+ Level.SEVERE,
+ "Multiple ArtifactFactories [" + responsibleFactory + "][" + factory + "]responsible for same artifact type [" + artifactTypeName + "]. Defaulting to DefaultArtifactFactory.");
return getDefaultArtifactFactory();
}
}

Back to the top