From 82581752a228434c3a792f1475f9e861b1521d97 Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Thu, 28 Dec 2023 16:55:28 +0530 Subject: [PATCH] Update new method docstrings --- src/main/java/org/jsoup/Jsoup.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/jsoup/Jsoup.java b/src/main/java/org/jsoup/Jsoup.java index dd3398a3e0..9ddf84c4de 100644 --- a/src/main/java/org/jsoup/Jsoup.java +++ b/src/main/java/org/jsoup/Jsoup.java @@ -194,7 +194,7 @@ public static Document parse(File file, @Nullable String charsetName, String bas @return sane HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid. - @since 1.17.1 + @since 1.17.2 */ public static Document parse(Path path, @Nullable String charsetName, String baseUri) throws IOException { return DataUtil.load(path, charsetName, baseUri); @@ -210,7 +210,7 @@ public static Document parse(Path path, @Nullable String charsetName, String bas @throws IOException if the file could not be found, or read, or if the charsetName is invalid. @see #parse(File, String, String) parse(file, charset, baseUri) - @since 1.17.1 + @since 1.17.2 */ public static Document parse(Path path, @Nullable String charsetName) throws IOException { return DataUtil.load(path, charsetName, path.toAbsolutePath().toString()); @@ -227,7 +227,7 @@ public static Document parse(Path path, @Nullable String charsetName) throws IOE @return sane HTML @throws IOException if the file could not be found or read. @see #parse(Path, String, String) parse(file, charset, baseUri) - @since 1.17.1 + @since 1.17.2 */ public static Document parse(Path path) throws IOException { return DataUtil.load(path, null, path.toAbsolutePath().toString()); @@ -244,7 +244,7 @@ public static Document parse(Path path) throws IOException { @return sane HTML @throws IOException if the file could not be found, or read, or if the charsetName is invalid. - @since 1.17.1 + @since 1.17.2 */ public static Document parse(Path path, @Nullable String charsetName, String baseUri, Parser parser) throws IOException { return DataUtil.load(path, charsetName, baseUri, parser);