Skip to content

Commit d2155b8

Browse files
committed
codacy report fixes
1 parent 94d51c1 commit d2155b8

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/main/java/net/seesharpsoft/intellij/plugins/csv/CsvGithubIssueSubmitter.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,15 @@ public class CsvGithubIssueSubmitter extends ErrorReportSubmitter {
3838
public static final String GIT_REPO = "intellij-csv-validator";
3939
public static final GHRepositoryPath GITHUB_FULL_PATH = new GHRepositoryPath(GIT_USER, GIT_REPO);
4040

41+
private static ScheduledFuture recentlySentReport = null;
42+
private static ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();
43+
4144
private static class CsvGithubSubmitException extends RuntimeException {
4245
CsvGithubSubmitException(Throwable exception) {
4346
super(exception);
4447
}
4548
}
4649

47-
private static ScheduledFuture recentlySentReport = null;
48-
49-
private static ScheduledExecutorService executorService = Executors.newSingleThreadScheduledExecutor();;
50-
5150
@NotNull
5251
@Override
5352
public String getReportActionText() {

0 commit comments

Comments
 (0)