We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 634dbcb + ab2e048 commit a2dafd2Copy full SHA for a2dafd2
src/MuTalk-Model/MTProgressBarLogger.class.st
@@ -15,6 +15,12 @@ Class {
15
{ #category : 'initialization' }
16
MTProgressBarLogger >> initialize [
17
18
+ self initializeMainJob
19
+]
20
+
21
+{ #category : 'initialization' }
22
+MTProgressBarLogger >> initializeMainJob [
23
24
mainJob := Job new.
25
SystemVersion current major <= 10 ifTrue: [
26
"Jobs need a block below P10 to have an owner?"
@@ -75,6 +81,7 @@ MTProgressBarLogger >> initializeTestJob: size [
75
81
{ #category : 'logging' }
76
82
MTProgressBarLogger >> logAnalysisStart [
77
83
84
+ mainJob ifNil: [ self initializeMainJob ].
78
85
mainJob prepareForRunning
79
86
]
80
87
0 commit comments