-
-
Notifications
You must be signed in to change notification settings - Fork 101
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomerspriority: major
Description
About
Fix encoding issues:
[...]\features\basic\SuggestionsUpDownVoter.java:27: error: unmappable character (0x8D) for encoding windows-1252
private static final Emoji FALLBACK_UP_VOTE = Emoji.fromUnicode("�?");
Add to build.gradle
:
compileJava {
options.encoding = "UTF-8"
}
compileTestJava {
options.encoding = "UTF-8"
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomerspriority: major