commit | b5703dd27ec87f236a7b89272779836dbae324b0 | [log] [tgz] |
---|---|---|
author | Felix Meschberger <fmeschbe@apache.org> | Mon Sep 07 18:18:54 2009 +0000 |
committer | Felix Meschberger <fmeschbe@apache.org> | Mon Sep 07 18:18:54 2009 +0000 |
tree | 1b75207847555ee134d4a2ec9682d4927bd6c2dc | |
parent | 0514379e6ba74b27dccc7d33b9d823eaa9545d12 [diff] |
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 ); } }