Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f06c9c

Browse files
tamasvajkigfoo
authored andcommitted
Fix spacing
1 parent 05f2257 commit 2f06c9c

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ open class KotlinFileExtractor(
3535
}
3636
}
3737

38+
39+
3840
fun getLabel(element: IrElement) : String? {
3941
when (element) {
4042
is IrFile -> return "@\"${element.path};sourcefile\"" // todo: remove copy-pasted code

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,6 @@ class X {
612612
extractClassSupertypes(c.superTypes, c.typeParameters, id, typeArgsQ)
613613
}
614614

615-
616615
fun extractClassSupertypes(superTypes: List<IrType>, typeParameters: List<IrTypeParameter>, id: Label<out DbReftype>, typeArgsQ: List<IrTypeArgument>? = null) {
617616
// Note we only need to substitute type args here because it is illegal to directly extend a type variable.
618617
// (For example, we can't have `class A<E> : E`, but can have `class A<E> : Comparable<E>`)

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ open class TrapWriter (protected val lm: TrapLabelManager, private val bw: Buffe
6868
return maybeLabel
6969
}
7070
}
71-
7271
/**
7372
* It is not easy to assign keys to local variables, so they get
7473
* given `*` IDs. However, the same variable may be referred to

0 commit comments

Comments
 (0)