Skip to content

Commit

Permalink
Fix compilation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonlee committed Oct 4, 2024
1 parent a1d4488 commit d478220
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.xmlpull.v1.XmlPullParserException

abstract class InMemoryParser : KXmlParser() {

abstract fun rootTag(): TagSnapshot
abstract fun rootTag(): TagSnapshot?

private val nodeStack = mutableListOf<TagSnapshot>()
private var parsingState = START_DOCUMENT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import okio.buffer
import okio.source
import java.io.File
import java.io.FileInputStream
import java.io.FileNotFoundException
import java.io.IOException
import java.io.InputStream
import java.nio.charset.StandardCharsets
Expand Down

0 comments on commit d478220

Please sign in to comment.