Explorar el Código

Ajout constructeur dans factory

Arthur Brandao hace 6 años
padre
commit
f665713210
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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();
     }
 }