File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
core/src/main/scala/net/ruippeixotog/scalascraper Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1212 scala : ['2.13', '3']
1313 include :
1414 - scala : ' 2.13'
15- scala-version : 2.13.16
15+ scala-version : 2.13.17
1616 - scala : ' 3'
1717 scala-version : 3.3.7
1818
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ ThisBuild / organization := "net.ruippeixotog"
66ThisBuild / semanticdbEnabled := true
77ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
88
9- ThisBuild / scalaVersion := " 2.13.16 "
10- ThisBuild / crossScalaVersions := Seq (" 2.13.16 " , " 3.3.7" )
9+ ThisBuild / scalaVersion := " 2.13.17 "
10+ ThisBuild / crossScalaVersions := Seq (" 2.13.17 " , " 3.3.7" )
1111
1212// taken from https://github.com/scala/bug/issues/12632
1313ThisBuild / libraryDependencySchemes ++= Seq (
Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ class JsoupBrowser(
9898 }
9999
100100 private val executePipeline : Connection => JsoupDocument =
101- defaultRequestSettings
102- .andThen(requestSettings)
103- .andThen(executeRequest)
104- .andThen(processResponse)
101+ ( defaultRequestSettings(_))
102+ .andThen(requestSettings(_) )
103+ .andThen(executeRequest(_) )
104+ .andThen(processResponse(_) )
105105}
106106
107107object JsoupBrowser {
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ object ContentParsers {
1212
1313 /** Leaves the extracted content as is.
1414 */
15- def asIs [C ] = identity[C ]
15+ def asIs [C ] = identity[C ](_)
1616
1717 /** Parses text content as an `Int` value.
1818 */
You can’t perform that action at this time.
0 commit comments