Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
-> url("http://docs.oracle.com/javase/8/docs/api")
)
} getOrElse {
// If everything fails, jam in the Java 9 base module.
// If everything fails, jam in Java 11 modules.
Map(
file("/modules/java.base")
-> url("http://docs.oracle.com/javase/9/docs/api"),
-> url("https://docs.oracle.com/en/java/javase/11/docs/api/java.base"),
file("/modules/java.xml")
-> url("http://docs.oracle.com/javase/9/docs/api")
-> url("https://docs.oracle.com/en/java/javase/11/docs/api/java.xml")
)
}
}
Expand Down
3 changes: 0 additions & 3 deletions shared/src/main/scala/scala/xml/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ package scala
* [[http://xerces.apache.org/ Xerces]] parser and is provided in Java
* by [[javax.xml.parsers.SAXParser]].
*
* A less greedy XML reader can return data as a sequential collection
* of events, see [[scala.xml.pull.XMLEventReader]].
*
* For more control of the input, use the parser written in Scala that
* is provided, [[scala.xml.parsing.ConstructingParser]].
*
Expand Down