We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java Properties object serialization produces for String' value :` looks like this:
Properties
String' value
my.path=\:
Doesn't look like the language tokenizer/parser likes this. I get the following errors:
extraneous input ':' expecting LineBreak
For a windows path Java string: c:\\path\\file.txt Serialization:
c:\\path\\file.txt
my.path=c\:\\path\\file.txt
Errors:
missing LineBreak at ':' missing LineBreak at '\' missing LineBreak at 'p' missing LineBreak at '\' missing LineBreak at 'f'
Observed in VSCode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Java
Properties
object serialization produces forString' value
:` looks like this:Doesn't look like the language tokenizer/parser likes this. I get the following errors:
For a windows path Java string:
c:\\path\\file.txt
Serialization:
Errors:
Observed in VSCode
The text was updated successfully, but these errors were encountered: