You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@abdera.apache.org by ro...@apache.org on 2006/08/19 20:30:27 UTC

svn commit: r432855 - /incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java

Author: rooneg
Date: Sat Aug 19 11:30:27 2006
New Revision: 432855

URL: http://svn.apache.org/viewvc?rev=432855&view=rev
Log:
Fix indenting...

[ in server/src/main/java/org/apache/abdera/server/exceptions ]

* MethodNotAllowedException.java
  (setAllow): Oops, indented a bit too far.

Modified:
    incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java

Modified: incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java
URL: http://svn.apache.org/viewvc/incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java?rev=432855&r1=432854&r2=432855&view=diff
==============================================================================
--- incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java (original)
+++ incubator/abdera/java/trunk/server/src/main/java/org/apache/abdera/server/exceptions/MethodNotAllowedException.java Sat Aug 19 11:30:27 2006
@@ -42,7 +42,7 @@
         first = false;
         continue;
       }
-        value.append(", ").append(method);
+      value.append(", ").append(method);
     }
     setHeader("Allow", value.toString());
   }