Skip to content

Commit e6305f7

Browse files
committed
Removed kotlin-reflect main dependency
1 parent b5be5f9 commit e6305f7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ spotless {
7474

7575
dependencies {
7676
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
77-
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
7877

7978
api 'org.simpleframework:simple-xml:2.7.1'
8079
api 'org.threeten:threetenbp:1.3.6'
8180

8281
testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0'
8382
testImplementation "org.jetbrains.spek:spek-api:$spek_version"
83+
testImplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
8484
testRuntimeOnly "org.jetbrains.spek:spek-junit-platform-engine:$spek_version"
8585
}
8686

src/main/kotlin/com/github/magneticflux/rss/Converters.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ internal fun OutputNode.createChild(reference: String = "", name: String, value:
3636
child.reference = reference
3737
}
3838

39+
/**
40+
* An iterator that iterates over children of an [InputNode].
41+
*/
3942
private class InputNodeChildIterator(val rootNode: InputNode) : AbstractIterator<InputNode>() {
4043
override fun computeNext() {
4144
val next = rootNode.next

0 commit comments

Comments
 (0)