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 3e7ed8c commit 312b5d9Copy full SHA for 312b5d9
geocss/src/main/scala/org/geoscript/geocss/Translator.scala
@@ -817,7 +817,9 @@ class Translator(val baseURL: Option[java.net.URL]) {
817
}
818
819
def createFeatureTypeStyles(spec: (Option[String], Seq[Seq[gt.Rule]])): Seq[gt.FeatureTypeStyle] =
820
- spec._2.map { createFeatureTypeStyle(spec._1, _) }
+ spec._2.map { rules =>
821
+ createFeatureTypeStyle((spec._1, rules))
822
+ }
823
824
def createFeatureTypeStyle(spec: (Option[String], Seq[gt.Rule])): gt.FeatureTypeStyle = {
825
val (typename, rules) = spec
0 commit comments