You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by fm...@apache.org on 2009/01/12 09:58:04 UTC

svn commit: r733654 - /felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java

Author: fmeschbe
Date: Mon Jan 12 00:58:04 2009
New Revision: 733654

URL: http://svn.apache.org/viewvc?rev=733654&view=rev
Log:
Action should return true if successfull

Modified:
    felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java

Modified: felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java?rev=733654&r1=733653&r2=733654&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java (original)
+++ felix/trunk/webconsole/src/main/java/org/apache/felix/webconsole/internal/system/GCAction.java Mon Jan 12 00:58:04 2009
@@ -45,7 +45,7 @@
     public boolean performAction( HttpServletRequest request, HttpServletResponse response )
     {
         System.gc();
-        return false;
+        return true;
     }
 
 }