You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by lh...@apache.org on 2008/10/15 09:20:26 UTC

svn commit: r704800 - /servicemix/scripts/builds/webapps/builds/status.jsp

Author: lhein
Date: Wed Oct 15 00:20:26 2008
New Revision: 704800

URL: http://svn.apache.org/viewvc?rev=704800&view=rev
Log:
fixed scope of result var

Modified:
    servicemix/scripts/builds/webapps/builds/status.jsp

Modified: servicemix/scripts/builds/webapps/builds/status.jsp
URL: http://svn.apache.org/viewvc/servicemix/scripts/builds/webapps/builds/status.jsp?rev=704800&r1=704799&r2=704800&view=diff
==============================================================================
--- servicemix/scripts/builds/webapps/builds/status.jsp (original)
+++ servicemix/scripts/builds/webapps/builds/status.jsp Wed Oct 15 00:20:26 2008
@@ -136,6 +136,7 @@
         return "<td class='unavailable' width='60%'><a href='http://projects.open.iona.com/builds/status' class='unavailable'>NOT AVAILABLE</a></td>";
     }
     
+    String result = null;
     String durationText = convertToDuration(System.currentTimeMillis() - f.lastModified());
     try {
       System.out.println("Processing: " + file);
@@ -176,7 +177,6 @@
           }
       }          
       
-      String result = null;
       reader = new BufferedReader(new FileReader(file));
       while (true) {
         String line = reader.readLine();