Skip to content

Commit

Permalink
revert owners
Browse files Browse the repository at this point in the history
  • Loading branch information
Durieux Pol committed May 3, 2024
1 parent 758742a commit 39cd131
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/MuTalk-Model/MTProgressBarLogger.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Class {
{ #category : 'initialization' }
MTProgressBarLogger >> initialize [

mainJob := Job new owner: self.
mainJob := Job new.
mainJob
min: 0;
max: 4.
Expand All @@ -26,7 +26,6 @@ MTProgressBarLogger >> initialize [
MTProgressBarLogger >> initializeMethodJob: size [

methodJob := Job new
owner: self;
min: 0;
max: size;
prepareForRunning;
Expand All @@ -37,7 +36,6 @@ MTProgressBarLogger >> initializeMethodJob: size [
MTProgressBarLogger >> initializeMutantJob: size [

mutantJob := Job new
owner: self;
min: 0;
max: size;
prepareForRunning;
Expand All @@ -48,7 +46,6 @@ MTProgressBarLogger >> initializeMutantJob: size [
MTProgressBarLogger >> initializeTestJob: size [

testJob := Job new
owner: self;
min: 0;
max: size;
prepareForRunning;
Expand Down

0 comments on commit 39cd131

Please sign in to comment.