We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf83999 commit 34765fdCopy full SHA for 34765fd
ktorm-ksp-annotations/src/main/kotlin/org/ktorm/ksp/annotation/Undefined.kt
@@ -14,8 +14,6 @@
14
* limitations under the License.
15
*/
16
17
-@file:Suppress("NoMultipleSpaces")
18
-
19
package org.ktorm.ksp.annotation
20
21
import sun.misc.Unsafe
@@ -147,7 +145,7 @@ public object Undefined {
147
145
return defineClass(name, bytes, null)
148
146
}
149
150
- @Suppress("MagicNumber")
+ @Suppress("MagicNumber", "NoMultipleSpaces")
151
private fun generateByteCode(className: ByteArray, superClassName: ByteArray): ByteBuffer {
152
val buf = ByteBuffer.allocate(1024)
153
buf.putInt(0xCAFEBABE.toInt()) // magic
0 commit comments