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
A URI to a file named: ClassWithSpécialCharacter.java (note non-ASCII é in the name) in its string form in the JSON still looks the same without é escaped. VSCode LSP client sends this url with file name that looks like: ClassWithSp%C3%A9cialCharacter.java which is correct. URIs with unicode chars are illegal... The issue I have faced is Paths(URI.create(uriStr)) throws java.lang.IllegalArgumentException: Bad escape
A URI to a file named:
ClassWithSpécialCharacter.java
(note non-ASCIIé
in the name) in its string form in the JSON still looks the same withouté
escaped. VSCode LSP client sends this url with file name that looks like:ClassWithSp%C3%A9cialCharacter.java
which is correct. URIs with unicode chars are illegal... The issue I have faced isPaths(URI.create(uriStr))
throwsjava.lang.IllegalArgumentException: Bad escape
Test project with such file: https://github.com/spring-projects/sts4/tree/main/headless-services/spring-boot-language-server/src/test/resources/test-projects/test-annotation-indexing-parent/test-annotation-indexing%20with%20space
The text was updated successfully, but these errors were encountered: