1.1 --- a/src/org/sonews/acl/AuthInfoCommand.java Sun Aug 29 18:17:37 2010 +0200
1.2 +++ b/src/org/sonews/acl/AuthInfoCommand.java Fri Oct 14 00:45:06 2011 +0200
1.3 @@ -15,7 +15,6 @@
1.4 * You should have received a copy of the GNU General Public License
1.5 * along with this program. If not, see <http://www.gnu.org/licenses/>.
1.6 */
1.7 -
1.8 package org.sonews.acl;
1.9
1.10 import java.io.IOException;
1.11 @@ -28,37 +27,31 @@
1.12 * @author Christian Lins
1.13 * @since sonews/1.1
1.14 */
1.15 -public class AuthInfoCommand implements Command
1.16 -{
1.17 +public class AuthInfoCommand implements Command {
1.18
1.19 @Override
1.20 - public String[] getSupportedCommandStrings()
1.21 - {
1.22 + public String[] getSupportedCommandStrings() {
1.23 throw new UnsupportedOperationException("Not supported yet.");
1.24 }
1.25
1.26 @Override
1.27 - public boolean hasFinished()
1.28 - {
1.29 + public boolean hasFinished() {
1.30 throw new UnsupportedOperationException("Not supported yet.");
1.31 }
1.32
1.33 @Override
1.34 - public String impliedCapability()
1.35 - {
1.36 + public String impliedCapability() {
1.37 throw new UnsupportedOperationException("Not supported yet.");
1.38 }
1.39
1.40 @Override
1.41 - public boolean isStateful()
1.42 - {
1.43 + public boolean isStateful() {
1.44 throw new UnsupportedOperationException("Not supported yet.");
1.45 }
1.46
1.47 @Override
1.48 public void processLine(NNTPConnection conn, String line, byte[] rawLine)
1.49 - throws IOException, StorageBackendException
1.50 - {
1.51 + throws IOException, StorageBackendException {
1.52 throw new UnsupportedOperationException("Not supported yet.");
1.53 }
1.54 }