Results 2 comments of Alan Chiou

If the class is `object` class in Kotlin ``` object class KotlinObject { fun method() { } } ``` You should use `INSTANCE` in Java ``` KotlinObject.INSTANCE.method(); ```

I found the task "generateLicensePage" always fails due to no copyright holder. `Templates#assertLicenseAndStatement` checks whether `LibraryInfo#getCopyrightStatement` is `null`. In `LibraryInfo`, it returns `null` if `copyrightHolder` is null or empty notice...