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/FLAPKeepAliveFrame.java | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) (limited to 'src/com/wilko/jaim/FLAPKeepAliveFrame.java') diff --git a/src/com/wilko/jaim/FLAPKeepAliveFrame.java b/src/com/wilko/jaim/FLAPKeepAliveFrame.java index 561c53e..b47e96f 100644 --- a/src/com/wilko/jaim/FLAPKeepAliveFrame.java +++ b/src/com/wilko/jaim/FLAPKeepAliveFrame.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 @@ -26,31 +26,30 @@ package com.wilko.jaim; /** - * - * @author paulw + * @author paulw * @version $Revision: 1.4 $ */ public class FLAPKeepAliveFrame extends FLAPFrame { - /** Creates new FLAPKeepAliveFrame */ + /** + * Creates new FLAPKeepAliveFrame + */ public FLAPKeepAliveFrame() { this.initialise(); } - - public FLAPKeepAliveFrame(byte frameData[]) - { + + public FLAPKeepAliveFrame(byte[] frameData) { initialise(); setFrameData(frameData); } - - protected void initialise() - { + + protected void initialise() { super.initialise(); - frame[1]=FLAP_FRAME_KEEP_ALIVE; + frame[1] = FLAP_FRAME_KEEP_ALIVE; } - + public int getFLAPFrameType() { return (FLAPFrame.FLAP_FRAME_KEEP_ALIVE); } - + } -- cgit v1.2.3-54-g00ecf