Forráskód Böngészése

Suppr ligne devenu inutile avec amelioration

Arthur Brandao 6 éve
szülő
commit
5a9c369936
1 módosított fájl, 0 hozzáadás és 6 törlés
  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();
     }
 }