Remove the deprecated from readString(InputStream, Charset)

I believe it was copied from the previous overload.
This commit is contained in:
EbenZhang 2017-04-13 15:42:23 +08:00 committed by GitHub
parent 2336e97bf0
commit fa97c2419e

View file

@ -53,7 +53,6 @@ public final class StreamUtil {
* @param charset Charset used to decode the input stream
* @return String representation of the input stream contents decoded using given charset
* @throws IOException
* @deprecated Use {@link #readString(java.io.InputStream, java.nio.charset.Charset)} variant.
*/
public static String readString(InputStream in, Charset charset) throws IOException
{