Parcourir la source

Ajout constructeur dans factory

Arthur Brandao il y a 6 ans
Parent
commit
f665713210
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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();
     }
 }