浏览代码

Ajout constructeur dans factory

Arthur Brandao 6 年之前
父节点
当前提交
f665713210
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/migl/lisp/LispFactory.java

+ 1 - 1
src/migl/lisp/LispFactory.java

@@ -18,6 +18,6 @@ public class LispFactory {
      * @return a new lisp interpreter.
      */
     public static Lisp makeIntepreter() {
-        throw new UnsupportedOperationException();
+        return new LispImpl();
     }
 }