Explorar o código

Suppr ligne devenu inutile avec amelioration

Arthur Brandao %!s(int64=6) %!d(string=hai) anos
pai
achega
5a9c369936
Modificáronse 1 ficheiros con 0 adicións e 6 borrados
  1. 0 6
      src/migl/lisp/LispFactory.java

+ 0 - 6
src/migl/lisp/LispFactory.java

@@ -7,8 +7,6 @@ package migl.lisp;
  *
  */
 public class LispFactory {
-	
-	private static boolean first = true;
 
     private LispFactory() {
         // do nothing
@@ -20,10 +18,6 @@ public class LispFactory {
      * @return a new lisp interpreter.
      */
     public static Lisp makeIntepreter() {
-    	if(first) {
-    		LispEval.setupOperators();
-    		first = false;
-    	}
         return new LispImpl();
     }
 }