Remove lines that were unintentionally doubled with a previous patch.

Remove unused import statement.
This commit is contained in:
hns 2004-09-15 12:13:12 +00:00
parent 71aeea336e
commit 1967c7d76b

View file

@ -22,7 +22,6 @@ package helma.servlet;
import helma.framework.*; import helma.framework.*;
import helma.util.*; import helma.util.*;
import java.io.*; import java.io.*;
import java.net.URLDecoder;
import java.util.*; import java.util.*;
import javax.servlet.*; import javax.servlet.*;
import javax.servlet.http.*; import javax.servlet.http.*;
@ -741,10 +740,6 @@ public abstract class AbstractServletClient extends HttpServlet {
} }
// append trailing "/" if it is contained in original URI // append trailing "/" if it is contained in original URI
// append trailing "/" if it is contained in original URI
if (uri.endsWith("/"))
pathbuffer.append('/');
if (uri.endsWith("/")) if (uri.endsWith("/"))
pathbuffer.append('/'); pathbuffer.append('/');