| 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 from
String.getBytes(String) into a
ByteArrayInputStream. |
| 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, use
ByteArrayOutputStream.toString(String). |
| org.codehaus.plexus.util.xml.XmlReader |
use XmlStreamReader
|
| Field | Description |
|---|---|
| org.codehaus.plexus.util.cli.Commandline.executable |
Use
Commandline.setExecutable(String) instead. |
| org.codehaus.plexus.util.cli.Commandline.OS_NAME |
Use
Os class instead. |
| org.codehaus.plexus.util.cli.Commandline.WINDOWS |
Use
Os class instead. |
| org.codehaus.plexus.util.xml.pull.XmlPullParserException.detail |
use generic getCause() method
|
| Method | Description |
|---|---|
| org.codehaus.plexus.util.cli.Commandline.createArgument() |
Use
Commandline.createArg() instead |
| org.codehaus.plexus.util.cli.Commandline.quoteArgument(String) |
Use
CommandLineUtils.quote(String) instead. |
| org.codehaus.plexus.util.cli.Commandline.toString(String[]) |
Use
CommandLineUtils.toString(String[]) instead. |
| org.codehaus.plexus.util.cli.Commandline.translateCommandline(String) |
Use
CommandLineUtils.translateCommandline(String) instead. |
| org.codehaus.plexus.util.cli.CommandLineUtils.quote(String) | |
| org.codehaus.plexus.util.dag.DAG.getVerticies() |
instead use
DAG.getVertices() |
| org.codehaus.plexus.util.IOUtil.bufferedCopy(InputStream, OutputStream) |
Buffering streams is actively harmful! See the class description as to why. Use
IOUtil.copy(InputStream, OutputStream) instead. |
| org.codehaus.plexus.util.xml.pull.XmlPullParserException.getDetail() |
Use the generic
getCause() method |