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
Before format: String str = '[\u0000-\u001f]|[\u007f]'
String str = '[\u0000-\u001f]|[\u007f]'
After format: String str = '[�-�]|[�]'
String str = '[�-�]|[�]'
this is not right. And this will make the changes of the file cannot be preview in the git.
The text was updated successfully, but these errors were encountered:
Hi, thank you for the bug report. You're right, it shouldn't transform it that way - I'll fix this soon.
Sorry, something went wrong.
1547fe1
This has been fixed in master and will be included in the next release.
master
Thanks again for the bug report!
Hi, 1.2.0 is out and contains the fix for this.
1.2.0
Thanks.
No branches or pull requests
Before format:
String str = '[\u0000-\u001f]|[\u007f]'
After format:
String str = '[�-�]|[�]'
this is not right. And this will make the changes of the file cannot be preview in the git.
The text was updated successfully, but these errors were encountered: