We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a354d1 commit b383157Copy full SHA for b383157
src/main/kotlin/com/github/magneticflux/rss/Converters.kt
@@ -16,7 +16,7 @@ internal val InputNode.fullName: String
16
get() {
17
val prefix = this.prefix
18
val name = this.name
19
- return if (prefix.isNullOrEmpty()) name else "$prefix:$name"
+ return if (prefix.isEmpty()) name else "$prefix:$name"
20
}
21
22
/**
@@ -46,4 +46,4 @@ private class InputNodeChildIterator(val rootNode: InputNode) : AbstractIterator
46
setNext(next)
47
else done()
48
49
-}
+}
0 commit comments