Closed
Description
The original title of this ticket referred specifically to JSoup. It's since been observed in other libraries.
test.scala:
object Test {
def main(args : Array[String]) {
val url = new java.net.URL("http://www.google.com/");
org.jsoup.Jsoup.parse(url, 3000).select("img");
}
}
Jsoup 1.3.1 is available here: http://jsoup.org/download
scalac -Ydebug -classpath jsoup-1.3.1.jar test.scala 2>err 1>out