Fixing checkstyle warnings

This commit is contained in:
jonas-atmire
2020-08-19 09:09:26 +02:00
parent 3f4015e291
commit 1947b48a4b
2 changed files with 1 additions and 3 deletions

View File

@@ -13,8 +13,6 @@ import java.io.FileInputStream;
import java.io.FileWriter; import java.io.FileWriter;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.io.Writer;
import java.nio.Buffer;
import java.sql.SQLException; import java.sql.SQLException;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;

View File

@@ -191,6 +191,6 @@ public interface ProcessService {
public List<String> getFileTypesForProcessBitstreams(Context context, Process process); public List<String> getFileTypesForProcessBitstreams(Context context, Process process);
void appendLog(int processId, String scriptName, String output, ProcessLogLevel processLogLevel) throws IOException; void appendLog(int processId, String scriptName, String output, ProcessLogLevel processLogLevel) throws IOException;
void createLogBitstream(Context context, Process process) void createLogBitstream(Context context, Process process)
throws IOException, SQLException, AuthorizeException; throws IOException, SQLException, AuthorizeException;
} }