Format all code, add editorconfig

This commit is contained in:
Frankie B 2024-05-10 00:32:34 +01:00
commit 3faced7068
No known key found for this signature in database
52 changed files with 2011 additions and 1918 deletions

View file

@ -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,24 +26,21 @@
package com.wilko.jaim;
/**
*
* @author paulw
* @author paulw
* @version $Revision: 1.5 $
*/
public abstract class TocResponse {
protected String cmd;
public TocResponse()
{
cmd="";
public TocResponse() {
cmd = "";
}
public String toString()
{
return(cmd);
public String toString() {
return (cmd);
}
public abstract String getResponseType();
}