File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
shared/src/main/scala/scala/xml Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -90,12 +90,12 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
90
90
-> url(" http://docs.oracle.com/javase/8/docs/api" )
91
91
)
92
92
} getOrElse {
93
- // If everything fails, jam in the Java 9 base module .
93
+ // If everything fails, jam in Java 11 modules .
94
94
Map (
95
95
file(" /modules/java.base" )
96
- -> url(" http ://docs.oracle.com/javase/9 /docs/api" ),
96
+ -> url(" https ://docs.oracle.com/en/java/ javase/11 /docs/api/java.base " ),
97
97
file(" /modules/java.xml" )
98
- -> url(" http ://docs.oracle.com/javase/9 /docs/api" )
98
+ -> url(" https ://docs.oracle.com/en/java/ javase/11 /docs/api/java.xml " )
99
99
)
100
100
}
101
101
}
Original file line number Diff line number Diff line change @@ -56,9 +56,6 @@ package scala
56
56
* [[http://xerces.apache.org/ Xerces ]] parser and is provided in Java
57
57
* by [[javax.xml.parsers.SAXParser ]].
58
58
*
59
- * A less greedy XML reader can return data as a sequential collection
60
- * of events, see [[scala.xml.pull.XMLEventReader ]].
61
- *
62
59
* For more control of the input, use the parser written in Scala that
63
60
* is provided, [[scala.xml.parsing.ConstructingParser ]].
64
61
*
You can’t perform that action at this time.
0 commit comments