Code cleanup: removed redundant semicolons
This commit is contained in:
+1
-1
@@ -550,7 +550,7 @@ class LazyJavaClassMemberScope(
|
||||
constructorDescriptor.initialize(valueParameters, getConstructorVisibility(classDescriptor))
|
||||
constructorDescriptor.setHasStableParameterNames(true)
|
||||
constructorDescriptor.returnType = classDescriptor.defaultType
|
||||
c.components.javaResolverCache.recordConstructor(jClass, constructorDescriptor);
|
||||
c.components.javaResolverCache.recordConstructor(jClass, constructorDescriptor)
|
||||
return constructorDescriptor
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -258,7 +258,7 @@ abstract class LazyJavaScope(protected val c: LazyJavaResolverContext) : MemberS
|
||||
})
|
||||
}
|
||||
|
||||
c.components.javaResolverCache.recordField(field, propertyDescriptor);
|
||||
c.components.javaResolverCache.recordField(field, propertyDescriptor)
|
||||
|
||||
return propertyDescriptor
|
||||
}
|
||||
|
||||
+1
-1
@@ -134,7 +134,7 @@ fun <T : Any> mapType(
|
||||
descriptor is TypeParameterDescriptor -> {
|
||||
val type = mapType(getRepresentativeUpperBound(descriptor),
|
||||
factory, mode, typeMappingConfiguration, writeGenericType = DO_NOTHING_3, descriptorTypeWriter = null)
|
||||
descriptorTypeWriter?.writeTypeVariable(descriptor.getName(), type);
|
||||
descriptorTypeWriter?.writeTypeVariable(descriptor.getName(), type)
|
||||
return type
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user