You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by ni...@apache.org on 2004/05/22 18:09:12 UTC

svn commit: rev 20215 - avalon/trunk/tools/magic

Author: niclas
Date: Sat May 22 09:09:12 2004
New Revision: 20215

Modified:
   avalon/trunk/tools/magic/build.bsh
Log:
Small mistake in the Plugin builder.

Modified: avalon/trunk/tools/magic/build.bsh
==============================================================================
--- avalon/trunk/tools/magic/build.bsh	(original)
+++ avalon/trunk/tools/magic/build.bsh	Sat May 22 09:09:12 2004
@@ -41,9 +41,10 @@
             String line;
             while( (line = br.readLine() ) != null )
             {
-                result.add( line );
+                line = line.trim();
+                if( ! line.equals( "" ) )
+                    result.add( line );
             }
-            System.out.println( "RETURNING!!!!" );
         } finally
         {
             if( reader != null )

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org