Skip to content

Commit 860a5c2

Browse files
committed
fixup! fixed my critical misuse of ParserOptions by completely neglecting the global setting DataFrame.parser.
1 parent cdef312 commit 860a5c2

File tree

1 file changed

+0
-1
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api

1 file changed

+0
-1
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/impl/api/parse.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,6 @@ internal object Parsers : GlobalParserOptions {
314314
// same as parserToDoubleWithOptions, but overrides the locale to C.UTF-8
315315
private val posixParserToDoubleWithOptions = stringParserWithOptions { options ->
316316
val parserOptions = (options ?: ParserOptions()).copy(locale = Locale.forLanguageTag("C.UTF-8"))
317-
TODO()
318317
val fastDoubleParser = FastDoubleParser(parserOptions)
319318
val parser = { it: String -> fastDoubleParser.parseOrNull(it) }
320319
parser

0 commit comments

Comments
 (0)