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/FLAPErrorFrame.java | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/com/wilko/jaim/FLAPErrorFrame.java') diff --git a/src/com/wilko/jaim/FLAPErrorFrame.java b/src/com/wilko/jaim/FLAPErrorFrame.java index 90af733..1df6e03 100644 --- a/src/com/wilko/jaim/FLAPErrorFrame.java +++ b/src/com/wilko/jaim/FLAPErrorFrame.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,27 +25,27 @@ package com.wilko.jaim; /** - * - * @author paulw + * @author paulw * @version $Revision: 1.3 $ */ public class FLAPErrorFrame extends FLAPFrame { - /** Creates new FLAPErrorFrame */ + /** + * Creates new FLAPErrorFrame + */ public FLAPErrorFrame() { - frame[1]=FLAP_FRAME_ERROR; + frame[1] = FLAP_FRAME_ERROR; } - - public FLAPErrorFrame(byte frameData[]) - { - frame[1]=FLAP_FRAME_ERROR; + + public FLAPErrorFrame(byte[] frameData) { + frame[1] = FLAP_FRAME_ERROR; setFrameData(frameData); } - - + + public int getFLAPFrameType() { return FLAPFrame.FLAP_FRAME_ERROR; } - + } -- cgit v1.2.3-54-g00ecf