Added @since tags

bug 22286, from Phil Steitz
Changed from public to package scope


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2003-08-13 23:48:19 +00:00
parent 8766154678
commit 1a99abf1cf
1 changed files with 5 additions and 2 deletions

View File

@ -69,8 +69,10 @@
*
* @author Alex Chaffee
* @author Scott Stanchfield
**/
public class StringPrintWriter extends PrintWriter {
* @since 2.0
*/
class StringPrintWriter extends PrintWriter {
public StringPrintWriter() {
super(new StringWriter());
}
@ -90,5 +92,6 @@ public String getString() {
flush();
return ((StringWriter) out).toString();
}
}