From 3faced7068a8401b57be8949e80ce4f4da4a0fb5 Mon Sep 17 00:00:00 2001 From: Frankie B Date: Fri, 10 May 2024 00:32:34 +0100 Subject: Format all code, add editorconfig --- src/com/wilko/jaim/TocSetConfigCommand.java | 57 +++++++++++++---------------- 1 file changed, 26 insertions(+), 31 deletions(-) (limited to 'src/com/wilko/jaim/TocSetConfigCommand.java') diff --git a/src/com/wilko/jaim/TocSetConfigCommand.java b/src/com/wilko/jaim/TocSetConfigCommand.java index 4984a21..aea6d91 100644 --- a/src/com/wilko/jaim/TocSetConfigCommand.java +++ b/src/com/wilko/jaim/TocSetConfigCommand.java @@ -1,4 +1,4 @@ -/* +/* * (C) 2002 Paul Wilkinson wilko@users.sourceforge.net * * This program is free software; you can redistribute it and/or modify @@ -28,47 +28,42 @@ package com.wilko.jaim; import java.util.Enumeration; /** - * - * @author paulw + * @author paulw */ public class TocSetConfigCommand extends TocCommand { - - private StringBuffer config; - - private static String CMD="toc_set_config "; - /** Creates a new instance of TocSetConfigCommand */ + private static final String CMD = "toc_set_config "; + private final StringBuffer config; + + /** + * Creates a new instance of TocSetConfigCommand + */ public TocSetConfigCommand() { - config=new StringBuffer(); + config = new StringBuffer(); } - - public void addGroup(Group g) - { - config.append("g "+g.getName()+"\n"); - Enumeration buddies=g.enumerateBuddies(); - while (buddies.hasMoreElements()) - { - Buddy b = (Buddy)buddies.nextElement(); - config.append("b "+b.getName()+"\n"); - if (b.getPermit()) - { - config.append("p "+b.getName()+"\n"); + + public void addGroup(Group g) { + config.append("g " + g.getName() + "\n"); + Enumeration buddies = g.enumerateBuddies(); + while (buddies.hasMoreElements()) { + Buddy b = (Buddy) buddies.nextElement(); + config.append("b " + b.getName() + "\n"); + if (b.getPermit()) { + config.append("p " + b.getName() + "\n"); } - if (b.getDeny()) - { - config.append("d "+b.getName()+"\n"); + if (b.getDeny()) { + config.append("d " + b.getName() + "\n"); } } } - - - public String toString() - { - return(CMD+'"'+config.toString()+'"'); + + + public String toString() { + return (CMD + '"' + config.toString() + '"'); } public byte[] getBytes() { - return(toString().getBytes()); + return (toString().getBytes()); } - + } -- cgit v1.2.3-54-g00ecf