Use `//` for single line comments in .kt files

pull/48/head
Graham 4 years ago
parent 77d3489b23
commit b1582ce3a0
  1. 8
      asm/src/main/java/dev/openrs2/asm/transform/Transformer.kt

@ -45,12 +45,12 @@ abstract class Transformer {
@Throws(AnalyzerException::class)
protected open fun preTransform(classPath: ClassPath) {
/* empty */
// empty
}
@Throws(AnalyzerException::class)
protected open fun prePass(classPath: ClassPath) {
/* empty */
// empty
}
@Throws(AnalyzerException::class)
@ -100,11 +100,11 @@ abstract class Transformer {
@Throws(AnalyzerException::class)
protected open fun postPass(classPath: ClassPath) {
/* empty */
// empty
}
@Throws(AnalyzerException::class)
protected open fun postTransform(classPath: ClassPath) {
/* empty */
// empty
}
}

Loading…
Cancel
Save