diff --git a/src/main/java/org/jsoup/Jsoup.java b/src/main/java/org/jsoup/Jsoup.java index 677b347841..732fde7da8 100644 --- a/src/main/java/org/jsoup/Jsoup.java +++ b/src/main/java/org/jsoup/Jsoup.java @@ -159,6 +159,7 @@ public static Document parse(File file, @Nullable String charsetName) throws IOE @return sane HTML @throws IOException if the file could not be found or read. @see #parse(File, String, String) parse(file, charset, baseUri) + @since 1.15.1 */ public static Document parse(File file) throws IOException { return DataUtil.load(file, null, file.getAbsolutePath());