plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/runtimes/ProjectCreationConfigFactory.java
changeset 480 b6d992b9b998
parent 479 518afa7c6d2f
--- a/plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/runtimes/ProjectCreationConfigFactory.java	Tue Aug 31 11:58:53 2010 -0700
+++ b/plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/runtimes/ProjectCreationConfigFactory.java	Tue Aug 31 15:21:04 2010 -0700
@@ -20,14 +20,10 @@
 
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.wst.common.project.facet.core.IActionConfigFactory;
+import org.symbian.tools.tmw.core.internal.projects.LibraryAdditionConfigObject;
 
 public class ProjectCreationConfigFactory implements IActionConfigFactory {
-    // Basically this is an ugly hack. Our project wizard will replace this config
-    // object with WizardContext
-    public static final Object CONFIG_STANDIN = "standin_config";
-
     public Object create() throws CoreException {
-        return CONFIG_STANDIN;
+        return new LibraryAdditionConfigObject();
     }
-
 }