Skip to content

Commit 5dcb70e

Browse files
authored
Make method private
1 parent bef4011 commit 5dcb70e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/kotlin-extractor/src/main/kotlin/KotlinFileExtractor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ open class KotlinFileExtractor(
356356

357357
// `argsIncludingOuterClasses` can be null to describe a raw generic type.
358358
// For non-generic types it will be zero-length list.
359-
fun extractNonPrivateMemberPrototypes(c: IrClass, argsIncludingOuterClasses: List<IrTypeArgument>?, id: Label<out DbClassorinterface>) {
359+
private fun extractNonPrivateMemberPrototypes(c: IrClass, argsIncludingOuterClasses: List<IrTypeArgument>?, id: Label<out DbClassorinterface>) {
360360
with("member prototypes", c) {
361361
val typeParamSubstitution =
362362
when (argsIncludingOuterClasses) {

0 commit comments

Comments
 (0)