You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fails with Java 17 because not all unicode slashes are escaped. If I change the code from
"|[\uD800\\uDC00-\uDB7F\uDFFF]" + // #x10000-#xEFFFF
to
"|[\\uD800\\uDC00-\\uDB7F\\uDFFF]" + // #x10000-#xEFFFF
it works for me
The text was updated successfully, but these errors were encountered:
apoleon
changed the title
Fails to build from source with Java 7 because of illegal escape character
Fails to build from source with Java 17 because of illegal escape character
Aug 27, 2022
It looks like the code in
utils-parent/utils/src/main/java/de/fau/cs/osr/utils/XmlGrammar.java
line 41
fails with Java 17 because not all unicode slashes are escaped. If I change the code from
it works for me
The text was updated successfully, but these errors were encountered: