File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tmc-plugin/src/fi/helsinki/cs/tmc Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ public void bgTaskFailed(Throwable ex) {
97
97
}
98
98
}).run ();
99
99
}
100
+ if (!isFirstRun && settings .getSendDiagnostics ()) {
101
+ new SendDiagnostics ().run ();
102
+ }
100
103
}
101
104
});
102
105
}
Original file line number Diff line number Diff line change 1
1
package fi .helsinki .cs .tmc .exerciseSubmitter ;
2
2
3
3
import fi .helsinki .cs .tmc .actions .CheckForNewExercisesOrUpdates ;
4
- import fi .helsinki .cs .tmc .actions .SubmitExerciseAction ;
5
4
import fi .helsinki .cs .tmc .core .TmcCore ;
6
5
import fi .helsinki .cs .tmc .core .domain .Exercise ;
7
6
import fi .helsinki .cs .tmc .core .domain .ProgressObserver ;
27
26
28
27
public class ExerciseSubmitter {
29
28
30
- private static final Logger log = Logger .getLogger (SubmitExerciseAction .class .getName ());
29
+ private static final Logger log = Logger .getLogger (ExerciseSubmitter .class .getName ());
31
30
32
31
public static class InvokedEvent implements TmcEvent {
33
32
You can’t perform that action at this time.
0 commit comments