File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/net/seesharpsoft/intellij/plugins/csv Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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 () {
You can’t perform that action at this time.
0 commit comments