Upgrade checkstyle; remove supressed indentation markers for new-style switches

This commit is contained in:
2024-05-17 16:38:28 -05:00
parent be69836b5b
commit 65fe6a002c
25 changed files with 58 additions and 84 deletions

View File

@ -195,7 +195,6 @@ public abstract class AbstractBaseFilesystemAction<FILE>
/*******************************************************************************
** Generic implementation of the execute method from the QueryInterface
*******************************************************************************/
@SuppressWarnings("checkstyle:Indentation")
public QueryOutput executeQuery(QueryInput queryInput) throws QException
{
preAction(queryInput.getBackend());

View File

@ -58,7 +58,6 @@ public class FilesystemTableMetaDataBuilder
/*******************************************************************************
**
*******************************************************************************/
@SuppressWarnings("checkstyle:Indentation")
public QTableMetaData buildStandardCardinalityOneTable()
{
AbstractFilesystemTableBackendDetails tableBackendDetails = switch(backend.getBackendType())

View File

@ -101,6 +101,7 @@ public class FilesystemImporterStep implements BackendStep
private Function<QRecord, Serializable> securitySupplier = null;
/*******************************************************************************
** Execute the step - using the request as input, and the result as output.
*******************************************************************************/
@ -373,7 +374,6 @@ public class FilesystemImporterStep implements BackendStep
/*******************************************************************************
**
*******************************************************************************/
@SuppressWarnings("checkstyle:Indentation")
List<QRecord> parseFileIntoRecords(RunBackendStepInput runBackendStepInput, String content) throws QException
{
/////////////////////////////////////////////////////////////////////////////////////////////////////////