Re: svn commit: r439744 - in /cocoon/trunk/tools/cocoon-block-deployer/cocoon-deployer-plugin/src/main/java/org/apache/cocoon/maven/deployer: ./ monolithic/ utils/

2006-09-20 Thread Leszek Gawron
Vadim Gritsenko wrote: [EMAIL PROTECTED] wrote: +public class CopyUtils { +public static void copy( InputStream is, OutputStream os ) throws IOException { +if ( !(is instanceof BufferedInputStream) ) { +is = new BufferedInputStream( is ); +} +if ( !(os

Re: svn commit: r439744 - in /cocoon/trunk/tools/cocoon-block-deployer/cocoon-deployer-plugin/src/main/java/org/apache/cocoon/maven/deployer: ./ monolithic/ utils/

2006-09-19 Thread Vadim Gritsenko
[EMAIL PROTECTED] wrote: +public class CopyUtils { +public static void copy( InputStream is, OutputStream os ) throws IOException { +if ( !(is instanceof BufferedInputStream) ) { +is = new BufferedInputStream( is ); +} +if ( !(os instanceof