-
Classes Class Description org.codehaus.plexus.util.StringInputStream As of version 1.5.2 this class should no longer be used because it does not properly handle character encoding. Instead, wrap the output fromString.getBytes(String)
into aByteArrayInputStream
.org.codehaus.plexus.util.StringOutputStream As of version 1.5.2 this class should no longer be used because it does not properly handle character encoding. Instead, useByteArrayOutputStream.toString(String)
.
-
Methods Method Description org.codehaus.plexus.util.IOUtil.bufferedCopy(InputStream, OutputStream) Buffering streams is actively harmful! See the class description as to why. UseIOUtil.copy(InputStream, OutputStream)
instead.org.codehaus.plexus.util.StringUtils.defaultString(Object) org.codehaus.plexus.util.StringUtils.equals(String, String)