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