ソースを参照

Suppr ligne devenu inutile avec amelioration

Arthur Brandao 6 年 前
コミット
5a9c369936
1 ファイル変更0 行追加6 行削除
  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();
     }
 }