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/ConnectionLostTocResponse.java | 26 ++++++++++++----------- 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'src/com/wilko/jaim/ConnectionLostTocResponse.java') diff --git a/src/com/wilko/jaim/ConnectionLostTocResponse.java b/src/com/wilko/jaim/ConnectionLostTocResponse.java index a01b642..4cc1724 100644 --- a/src/com/wilko/jaim/ConnectionLostTocResponse.java +++ b/src/com/wilko/jaim/ConnectionLostTocResponse.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 @@ -27,24 +27,26 @@ package com.wilko.jaim; /** * This is a "pseudo" TOC response - it is delivered to JaimLib clients to indicate that the connection to the server has been lost. - * @author wilko + * + * @author wilko * @version: $revision: $ */ public class ConnectionLostTocResponse extends TocResponse { - - public static final String RESPONSE_TYPE="CONNECTIONLOST"; - - /** Creates a new instance of LoginCompleteTocResponse */ - public ConnectionLostTocResponse() { + + public static final String RESPONSE_TYPE = "CONNECTIONLOST"; + + /** + * Creates a new instance of LoginCompleteTocResponse + */ + public ConnectionLostTocResponse() { } - + public String getResponseType() { return (RESPONSE_TYPE); } - - public String toString() - { + + public String toString() { return (RESPONSE_TYPE); } - + } -- cgit v1.2.3-54-g00ecf