Fix wrong comments

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@812244 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/java/org/apache/felix/webconsole/internal/WebConsolePluginAdapter.java b/webconsole/src/main/java/org/apache/felix/webconsole/internal/WebConsolePluginAdapter.java
index d7a38cf..cc7b462 100644
--- a/webconsole/src/main/java/org/apache/felix/webconsole/internal/WebConsolePluginAdapter.java
+++ b/webconsole/src/main/java/org/apache/felix/webconsole/internal/WebConsolePluginAdapter.java
@@ -130,12 +130,12 @@
     {
         if ( ( req instanceof HttpServletRequest ) && ( ( HttpServletRequest ) req ).getMethod().equals( "GET" ) )
         {
-            // not GET request, have the plugin handle it directly
+            // handle the GET request here and call into plugin on renderContent
             super.service( req, resp );
         }
         else
         {
-            // handle the GET request here and call into plugin on renderContent
+            // not a GET request, have the plugin handle it directly
             plugin.service( req, resp );
         }
     }