Add public keyword to new Kotlin class declarations

This prevents the IDE from instantly displaying an error message due to
our use of explicit API mode.

Signed-off-by: Graham <gpe@openrs2.dev>
pull/132/head
Graham 4 years ago
parent 0af11d75c3
commit b44bb21403
  1. 6
      .idea/fileTemplates/internal/Kotlin Class.kt
  2. 6
      .idea/fileTemplates/internal/Kotlin Enum.kt
  3. 6
      .idea/fileTemplates/internal/Kotlin Interface.kt

@ -0,0 +1,6 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
#end
#parse("File Header.java")
public class ${NAME} {
}

@ -0,0 +1,6 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
#end
#parse("File Header.java")
public enum class ${NAME} {
}

@ -0,0 +1,6 @@
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
#end
#parse("File Header.java")
public interface ${NAME} {
}
Loading…
Cancel
Save