소스 검색

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