Removed unused mountpoint field.
This commit is contained in:
parent
99ce816051
commit
523938da67
1 changed files with 0 additions and 9 deletions
|
@ -32,9 +32,6 @@ public final class EmbeddedServletClient extends AbstractServletClient {
|
|||
private Application app = null;
|
||||
private String appName;
|
||||
|
||||
// The path where this servlet is mounted
|
||||
String mountpoint;
|
||||
|
||||
/**
|
||||
* Creates a new EmbeddedServletClient object.
|
||||
*/
|
||||
|
@ -56,12 +53,6 @@ public final class EmbeddedServletClient extends AbstractServletClient {
|
|||
if (appName == null) {
|
||||
throw new ServletException("Application name not set in init parameters");
|
||||
}
|
||||
|
||||
mountpoint = init.getInitParameter("mountpoint");
|
||||
|
||||
if (mountpoint == null) {
|
||||
mountpoint = "/" + appName;
|
||||
}
|
||||
}
|
||||
|
||||
ResponseTrans execute(RequestTrans req) throws Exception {
|
||||
|
|
Loading…
Add table
Reference in a new issue