Anthill OS patch: bad-line-endings

Jim Hague <[email protected]> Mon, 29 Oct 2007 11:44:57 +0000
Newsgroups gmane.comp.java.anthill.devel
Message-ID <[email protected]>
# HG changeset patch
# User Jim Hague <jim.hague-70XMh/ZFPwTe9wHmmfpqLFaTQe2KTcn/@public.gmane.org>
# Date 1193654689 0
# Node ID 59f096cd7c6e8e354e3daf736bd7580be6a0f4ee
# Parent  d92cb5077023c8f20f6a6be66da40432f2b29ec6
Correct line endings. Some are ^M some are ^M^J. Set to a proper
line ending.

diff -r d92cb5077023 -r 59f096cd7c6e=20
source/main/java/com/urbancode/anthill/web/admin/AnthillFlushQueueServlet.j=
ava
=2D--=20
a/source/main/java/com/urbancode/anthill/web/admin/AnthillFlushQueueServlet=
=2Ejava=09
Mon Oct 29 10:44:49 2007 +0000
+++=20
b/source/main/java/com/urbancode/anthill/web/admin/AnthillFlushQueueServlet=
=2Ejava=09
Mon Oct 29 10:44:49 2007 +0000
@@ -1,4 +1,30 @@
=2D/*=0D * @(#)AnthillFlushQueueServlet.java=0D *=0D * License -=0D * The c=
ontents of=20
this file are subject to the Urbancode Public License=0D * Version 1.0=20
(the "License"); you may not use this file except in=0D * compliance with t=
he=20
License. You may obtain a copy of the License at=0D *=20
http://www.urbancode.com/licenses/UPL/1_0/=0D *=0D * Software distributed u=
nder=20
the License is distributed on an "AS IS"=0D * basis, WITHOUT WARRANTY OF AN=
Y=20
KIND, either express or implied. See the=0D * License for the specific lang=
uage=20
governing rights and limitations=0D * under the License.=0D *=0D * The Init=
ial=20
Developer of the Original Code is Urbancode Software=0D * Development, Inc.=
=20
("Urbancode").  Portions created by Urbancode are=0D * Copyright (C) Urbanc=
ode=20
Software Development, Inc. All Rights Reserved.=0D */=0D=0Dpackage=20
com.urbancode.anthill.web.admin;           =0Dimport org.apache.log4j.Logge=
r;
import javax.servlet.*;=0Dimport javax.servlet.http.*;=0Dimport=20
com.urbancode.anthill.*;=0Dimport com.urbancode.anthill.util.*;=0Dimport=20
com.urbancode.anthill.web.admin.WebKeys;
+/*
+ * @(#)AnthillFlushQueueServlet.java
+ *
+ * License -
+ * The contents of this file are subject to the Urbancode Public License
+ * Version 1.0 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * http://www.urbancode.com/licenses/UPL/1_0/
+ *
+ * Software distributed under the License is distributed on an "AS IS"
+ * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+ * License for the specific language governing rights and limitations
+ * under the License.
+ *
+ * The Initial Developer of the Original Code is Urbancode Software
+ * Development, Inc. ("Urbancode").  Portions created by Urbancode are
+ * Copyright (C) Urbancode Software Development, Inc. All Rights Reserved.
+ */
+
+package com.urbancode.anthill.web.admin;          =20
+import org.apache.log4j.Logger;
+import javax.servlet.*;
+import javax.servlet.http.*;
+import com.urbancode.anthill.*;
+import com.urbancode.anthill.util.*;
+import com.urbancode.anthill.web.admin.WebKeys;
+
 /**=20
  *
  * @author  Robert Dobbins
@@ -55,7 +81,8 @@ public class AnthillFlushQueueServlet ex
             errorMessage =3D e.getMessage();
         }
         if (!error) {
=2D          =20
context.getRequestDispatcher(ScreenNames.AnthillAdminServlet).forward(req,=
=20
res);
+          =20
context.getRequestDispatcher(ScreenNames.AnthillAdminServlet).forward(req,=
=20
res);
+
         }
         else {
             req.setAttribute(WebKeys.errorMessageKey, errorMessage);
@@ -85,5 +112,6 @@ public class AnthillFlushQueueServlet ex
     */
     public String getServletInfo() {
         return "Short description";
=2D    }
=2D}
\ No newline at end of file
+    }
+
+}

=2D-=20
Jim Hague - [email protected]          Never trust a computer you can't lif=
t.