László Balázs-Csíki
László Balázs-Csíki
If JAVA_HOME is set to a jDK 8, then `mvn clean package` builds the project fine. However with a JDK 14: ``` [ERROR] /C:/dev/java_apps/i18n-editor-master/src/main/java/com/jvms/i18neditor/editor/TranslationTreeNode.java:[64,40] incompatible types: inference variable T has...
At the end of GuiActionRunner there is the following code: ```java if (caughtException instanceof RuntimeException) { appendStackTraceInCurrentThreadToThrowable(caughtException, "execute"); throw (RuntimeException) caughtException; } if (caughtException instanceof Error) { caughtException.fillInStackTrace(); throw (Error)...