Enum warnings fixed: deprecated delimiters, short super constructors, both in project and in libraries
This commit is contained in:
+1
-1
@@ -55,7 +55,7 @@ public class CallArgumentTranslator private (
|
||||
}
|
||||
|
||||
private enum class ArgumentsKind {
|
||||
HAS_EMPTY_EXPRESSION_ARGUMENT
|
||||
HAS_EMPTY_EXPRESSION_ARGUMENT,
|
||||
HAS_NOT_EMPTY_EXPRESSION_ARGUMENT
|
||||
}
|
||||
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
package org.jetbrains.kotlin.js.translate.utils
|
||||
|
||||
enum class InlineAnnotation(val fqName: String) {
|
||||
INLINE : InlineAnnotation("kotlin.inline")
|
||||
NO_INLINE : InlineAnnotation("kotlin.noinline")
|
||||
INLINE("kotlin.inline"),
|
||||
NO_INLINE("kotlin.noinline")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user