Replaced static factory method with constructor
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / modeladapter / componentadapters / NoLogicAdapter.java
index c3d3478..d07da2e 100644 (file)
@@ -33,14 +33,4 @@ public class NoLogicAdapter<T extends GUIComponent> implements ComponentAdapter<
        {
                // do nothing
        }
-
-       /**
-        * Creates a new {@link NoLogicAdapter} for the given GUIComponent class.
-        * 
-        * @author Christian Femers
-        */
-       public static <T extends GUIComponent> NoLogicAdapter<T> forClass(Class<T> guiComponentClass)
-       {
-               return new NoLogicAdapter<>(guiComponentClass);
-       }
 }