소스 검색

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();
     }
 }