Skip to content

Commit dd7d808

Browse files
committed
Clean up @SInCE tags "@SInCE 2.1." -> "@SInCE 2.1"
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1326600 13f79535-47bb-0310-9956-ffa450edef68
1 parent be4470e commit dd7d808

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/io/IOUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)