-
Exceptions Exceptions Description org.jsoup.UncheckedIOException UseUncheckedIOException
instead. This class acted as a compatibility shim for Java versions prior to 1.8.
-
Methods Method Description org.jsoup.nodes.Element.forEach(Consumer<? super Element>) useElement.stream()
.forEach(Consumer)
instead. (Removing this method so Element can implement Iterable, which this signature conflicts with due to the non-void return.)