diff -r ed84c8bdd87b -r b58cab5be0f4 src/org/sonews/daemon/command/Command.java
--- a/src/org/sonews/daemon/command/Command.java	Sun Aug 29 17:28:58 2010 +0200
+++ b/src/org/sonews/daemon/command/Command.java	Sun Oct 09 01:02:53 2011 +0200
@@ -30,22 +30,21 @@
 public interface Command
 {
 
-  /**
-   * @return true if this instance can be reused.
-   */
-  boolean hasFinished();
+	/**
+	 * @return true if this instance can be reused.
+	 */
+	boolean hasFinished();
 
-  /**
-   * Returns capability string that is implied by this command class.
-   * MAY return null if the command is required by the NNTP standard.
-   */
-  String impliedCapability();
+	/**
+	 * Returns capability string that is implied by this command class.
+	 * MAY return null if the command is required by the NNTP standard.
+	 */
+	String impliedCapability();
 
-  boolean isStateful();
+	boolean isStateful();
 
-  String[] getSupportedCommandStrings();
+	String[] getSupportedCommandStrings();
 
-  void processLine(NNTPConnection conn, String line, byte[] rawLine)
-    throws IOException, StorageBackendException;
-
+	void processLine(NNTPConnection conn, String line, byte[] rawLine)
+		throws IOException, StorageBackendException;
 }