mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-01-04 23:48:42 +01:00
Fixed some issues with javadoc task
This commit is contained in:
parent
ba34d2ad9a
commit
0ee2d9a1e0
@ -49,9 +49,9 @@ allprojects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Fix for UTF-8 files showing with wrong encoding when compiled on Windows machines.
|
// Fix for UTF-8 files showing with wrong encoding when compiled on Windows machines.
|
||||||
tasks.withType(JavaCompile) {
|
compileJava { options.encoding = "UTF-8" }
|
||||||
options.encoding = 'UTF-8'
|
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
|
||||||
}
|
javadoc { options.encoding = 'UTF-8' }
|
||||||
}
|
}
|
||||||
|
|
||||||
println "Building artifact for version $fullVersion"
|
println "Building artifact for version $fullVersion"
|
||||||
|
@ -59,6 +59,7 @@ public final class Reflection {
|
|||||||
* @param target - the target type.
|
* @param target - the target type.
|
||||||
* @param name - the name of the field, or NULL to ignore.
|
* @param name - the name of the field, or NULL to ignore.
|
||||||
* @param fieldType - a compatible field type.
|
* @param fieldType - a compatible field type.
|
||||||
|
* @param <T> Type of the field.
|
||||||
* @return The field accessor.
|
* @return The field accessor.
|
||||||
*/
|
*/
|
||||||
public static <T> FieldAccessor<T> getField(Class<?> target, String name, Class<T> fieldType) {
|
public static <T> FieldAccessor<T> getField(Class<?> target, String name, Class<T> fieldType) {
|
||||||
|
@ -25,7 +25,7 @@ public enum LangCode {
|
|||||||
|
|
||||||
CUSTOM("Custom", ""),
|
CUSTOM("Custom", ""),
|
||||||
EN("English", "Rsl1122"),
|
EN("English", "Rsl1122"),
|
||||||
CN("Simplified Chinese", "f0rb1d (佛壁灯) & qsefthuopq"),
|
CN("Simplified Chinese", "f0rb1d (\u4f5b\u58c1\u706f) & qsefthuopq"),
|
||||||
DE("Deutch", "Eyremba & fuzzlemann & Morsmorse"),
|
DE("Deutch", "Eyremba & fuzzlemann & Morsmorse"),
|
||||||
FI("Finnish", "Rsl1122"),
|
FI("Finnish", "Rsl1122"),
|
||||||
FR("French", "CyanTech & Aurelien"),
|
FR("French", "CyanTech & Aurelien"),
|
||||||
|
Loading…
Reference in New Issue
Block a user