-
Classes Class Description org.jsoup.internal.ConstrainableInputStream useControllableInputStream
instead (but don't use that either, because this is jsoup internal!)org.jsoup.select.StructuralEvaluator.ImmediateParent replaced byStructuralEvaluator.ImmediateParentRun
-
Exceptions Exceptions Description org.jsoup.UncheckedIOException UseUncheckedIOException
instead. This class acted as a compatibility shim for Java versions prior to 1.8.
-
Annotation Types Annotation Type Description org.jsoup.internal.FieldsAreNonnullByDefault Previously indicated that fields types are not nullable, unless otherwise specified by @Nullable.org.jsoup.internal.NonnullByDefault Previously indicated that all components (methods, returns, fields) are not nullable, unless otherwise specified by @Nullable.org.jsoup.internal.ReturnsAreNonnullByDefault Previously indicated that return types are not nullable, unless otherwise specified by @Nullable.
-
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.)org.jsoup.nodes.Range.track(Node, boolean) no-op; internal method moved out of visibilityorg.jsoup.parser.XmlTreeBuilder.insertNode(Node) unused and will be removed.