mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-23 23:32:58 +08:00
avoid compile error caused by encoding
This commit is contained in:
parent
b253e779a2
commit
5b6da38160
@ -36,6 +36,8 @@ plugins {
|
|||||||
id 'signing'
|
id 'signing'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
compileJava.options.encoding = "UTF-8"
|
||||||
|
compileTestJava.options.encoding = "UTF-8"
|
||||||
|
|
||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_17
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_17
|
||||||
@ -214,6 +216,7 @@ signing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
javadoc {
|
javadoc {
|
||||||
|
options.encoding = 'UTF-8'
|
||||||
if(JavaVersion.current().isJava9Compatible()) {
|
if(JavaVersion.current().isJava9Compatible()) {
|
||||||
options.addBooleanOption('html5', true)
|
options.addBooleanOption('html5', true)
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@ import express.http.Response;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used for processing crash dumps & logs generated by the game.
|
* Used for processing crash dumps and logs generated by the game.
|
||||||
* Logs are in JSON, and are sent to the server for logging.
|
* Logs are in JSON, and are sent to the server for logging.
|
||||||
*/
|
*/
|
||||||
public final class ClientLogHandler implements HttpContextHandler {
|
public final class ClientLogHandler implements HttpContextHandler {
|
||||||
|
Loading…
Reference in New Issue
Block a user