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/TocSetIdleCommand.java | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'src/com/wilko/jaim/TocSetIdleCommand.java') diff --git a/src/com/wilko/jaim/TocSetIdleCommand.java b/src/com/wilko/jaim/TocSetIdleCommand.java index 2d192ba..95e93c9 100644 --- a/src/com/wilko/jaim/TocSetIdleCommand.java +++ b/src/com/wilko/jaim/TocSetIdleCommand.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 @@ -25,29 +25,29 @@ package com.wilko.jaim; /** - * - * @author paulw + * @author paulw * @version $version: $ */ public class TocSetIdleCommand extends TocCommand { - private int idle; - private static final String CMD="toc_set_idle "; - - /** Creates new TocSetIdleCommand - *@param idleSecs - the period for which the user has been idle + private static final String CMD = "toc_set_idle "; + private final int idle; + + /** + * Creates new TocSetIdleCommand + * + * @param idleSecs - the period for which the user has been idle */ public TocSetIdleCommand(int idleSecs) { - idle=idleSecs; + idle = idleSecs; } - - public String toString() - { - return(CMD+idle); + + public String toString() { + return (CMD + idle); } public byte[] getBytes() { - return(toString().getBytes()); + return (toString().getBytes()); } - + } -- cgit v1.2.3-54-g00ecf