diff -r ed84c8bdd87b -r 4653fc7609e7 src/org/sonews/daemon/command/CapabilitiesCommand.java
--- a/src/org/sonews/daemon/command/CapabilitiesCommand.java	Sun Aug 29 17:28:58 2010 +0200
+++ b/src/org/sonews/daemon/command/CapabilitiesCommand.java	Sun Oct 09 01:22:18 2011 +0200
@@ -42,52 +42,49 @@
 public class CapabilitiesCommand implements Command
 {
 
-  static final String[] CAPABILITIES = new String[]
-    {
-      "VERSION 2", // MUST be the first one; VERSION 2 refers to RFC3977
-      "READER",    // Server implements commands for reading
-      "POST",      // Server implements POST command
-      "OVER"       // Server implements OVER command
-    };
+	static final String[] CAPABILITIES = new String[] {
+		"VERSION 2", // MUST be the first one; VERSION 2 refers to RFC3977
+		"READER", // Server implements commands for reading
+		"POST", // Server implements POST command
+		"OVER" // Server implements OVER command
+	};
 
-  @Override
-  public String[] getSupportedCommandStrings()
-  {
-    return new String[] {"CAPABILITIES"};
-  }
+	@Override
+	public String[] getSupportedCommandStrings()
+	{
+		return new String[] {"CAPABILITIES"};
+	}
 
-  /**
-   * First called after one call to processLine().
-   * @return
-   */
-  @Override
-  public boolean hasFinished()
-  {
-    return true;
-  }
+	/**
+	 * First called after one call to processLine().
+	 * @return
+	 */
+	@Override
+	public boolean hasFinished()
+	{
+		return true;
+	}
 
-  @Override
-  public String impliedCapability()
-  {
-    return null;
-  }
-  
-  @Override
-  public boolean isStateful()
-  {
-    return false;
-  }
+	@Override
+	public String impliedCapability()
+	{
+		return null;
+	}
 
-  @Override
-  public void processLine(NNTPConnection conn, final String line, byte[] raw)
-    throws IOException
-  {
-    conn.println("101 Capabilities list:");
-    for(String cap : CAPABILITIES)
-    {
-      conn.println(cap);
-    }
-    conn.println(".");
-  }
+	@Override
+	public boolean isStateful()
+	{
+		return false;
+	}
 
+	@Override
+	public void processLine(NNTPConnection conn, final String line, byte[] raw)
+		throws IOException
+	{
+		conn.println("101 Capabilities list:");
+		for (String cap : CAPABILITIES) {
+			conn.println(cap);
+		}
+		conn.println(".");
+	}
 }