@@ -754,7 +754,7 @@ public static String toString(Reader input) throws IOException {
754754 * The URI source.
755755 * @return The contents of the URL as a String.
756756 * @throws IOException if an I/O exception occurs.
757- * @since 2.1.
757+ * @since 2.1
758758 */
759759 public static String toString (URI uri ) throws IOException {
760760 return toString (uri , Charset .defaultCharset ());
@@ -787,7 +787,7 @@ public static String toString(URI uri, Charset encoding) throws IOException {
787787 * @throws UnsupportedCharsetException
788788 * thrown instead of {@link UnsupportedEncodingException} in version 2.2 if the encoding is not
789789 * supported.
790- * @since 2.1.
790+ * @since 2.1
791791 */
792792 public static String toString (URI uri , String encoding ) throws IOException {
793793 return toString (uri , Charsets .toCharset (encoding ));
@@ -800,7 +800,7 @@ public static String toString(URI uri, String encoding) throws IOException {
800800 * The URL source.
801801 * @return The contents of the URL as a String.
802802 * @throws IOException if an I/O exception occurs.
803- * @since 2.1.
803+ * @since 2.1
804804 */
805805 public static String toString (URL url ) throws IOException {
806806 return toString (url , Charset .defaultCharset ());
@@ -838,7 +838,7 @@ public static String toString(URL url, Charset encoding) throws IOException {
838838 * @throws UnsupportedCharsetException
839839 * thrown instead of {@link UnsupportedEncodingException} in version 2.2 if the encoding is not
840840 * supported.
841- * @since 2.1.
841+ * @since 2.1
842842 */
843843 public static String toString (URL url , String encoding ) throws IOException {
844844 return toString (url , Charsets .toCharset (encoding ));
0 commit comments