From: <dr...@us...> - 2002-11-11 19:23:09
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro In directory usw-pr-cvs1:/tmp/cvs-serv15906/src/org/webmacro Modified Files: FastWriter.java Log Message: - adding copyright headers where they were missing - fix a few import statements - minor javadoc cleanup here and there - used IDEA to find and fix redundant type casts and unused assignments. Index: FastWriter.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/FastWriter.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** FastWriter.java 29 Jul 2002 07:07:01 -0000 1.26 --- FastWriter.java 11 Nov 2002 19:22:35 -0000 1.27 *************** *** 457,461 **** String encoding ) throws UnsupportedEncodingException { ! FastWriter fw = null; Pool p = ( Pool ) WRITERCACHE.get( encoding ); if ( p != null ) { --- 457,461 ---- String encoding ) throws UnsupportedEncodingException { ! FastWriter fw; Pool p = ( Pool ) WRITERCACHE.get( encoding ); if ( p != null ) { |