Fix compiler warnings in compiler code
This commit is contained in:
+1
-1
@@ -106,7 +106,7 @@ class LazyJavaClassDescriptor(
|
||||
LazyJavaClassMemberScope(c, this, jClass, skipRefinement = additionalSupertypeClassDescriptor != null)
|
||||
|
||||
private val scopeHolder =
|
||||
ScopesHolderForClass.create(this, c.storageManager, c.components.kotlinTypeChecker.kotlinTypeRefiner) { kotlinTypeRefiner ->
|
||||
ScopesHolderForClass.create(this, c.storageManager, c.components.kotlinTypeChecker.kotlinTypeRefiner) {
|
||||
LazyJavaClassMemberScope(
|
||||
c, this, jClass,
|
||||
skipRefinement = additionalSupertypeClassDescriptor != null,
|
||||
|
||||
@@ -48,7 +48,7 @@ object ConstantValueFactory {
|
||||
}
|
||||
}
|
||||
|
||||
fun createUnsignedValue(constantValue: ConstantValue<*>, type: KotlinType): UnsignedValueConstant<*>? {
|
||||
fun createUnsignedValue(constantValue: ConstantValue<*>): UnsignedValueConstant<*>? {
|
||||
return when (constantValue) {
|
||||
is ByteValue -> UByteValue(constantValue.value)
|
||||
is ShortValue -> UShortValue(constantValue.value)
|
||||
|
||||
@@ -95,7 +95,7 @@ public class LockBasedStorageManager implements StorageManager {
|
||||
}
|
||||
|
||||
public LockBasedStorageManager(String debugText) {
|
||||
this(debugText, (Runnable)null, (Function1)null);
|
||||
this(debugText, (Runnable) null, null);
|
||||
}
|
||||
|
||||
public LockBasedStorageManager(
|
||||
|
||||
Reference in New Issue
Block a user