minor formatting stuff

This commit is contained in:
hns 2001-03-05 16:04:29 +00:00
parent d2ce49b6ef
commit 9edd9cf670

View file

@ -1,4 +1,4 @@
// ServletClient.java // AcmeServletClient.java
// Copyright (c) Hannes Wallnoefer, Raphael Spannocchi 1998-2000 // Copyright (c) Hannes Wallnoefer, Raphael Spannocchi 1998-2000
/* Portierung von helma.asp.AspClient auf Servlets */ /* Portierung von helma.asp.AspClient auf Servlets */
@ -16,11 +16,11 @@ import helma.objectmodel.Node;
import helma.util.Uploader; import helma.util.Uploader;
/** /**
* This is the HOP servlet adapter that uses the Acme servlet API clone and communicates * This is the Hop servlet adapter that uses the Acme servlet API clone and communicates
* directly with hop applications instead of using RMI. * directly with hop applications instead of using RMI.
*/ */
public class AcmeServletClient extends HttpServlet{ public class AcmeServletClient extends HttpServlet {
private int uploadLimit; // limit to HTTP uploads in kB private int uploadLimit; // limit to HTTP uploads in kB
private Hashtable apps; private Hashtable apps;
@ -182,7 +182,7 @@ public class AcmeServletClient extends HttpServlet{
try { try {
res.sendRedirect(url); res.sendRedirect(url);
} catch (Exception e) { } catch (Exception e) {
System.err.println ("Exception bei redirect: " + e + e.getMessage()); System.err.println ("Exception in redirect: " + e + e.getMessage());
} }
} }