Skip to content

Commit

Permalink
add default values (because they can be absent)
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Feb 2, 2024
1 parent 61e5631 commit 76166cf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Iceberg/IceExternalJob.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ IceExternalJob >> ensureStarted [

{ #category : 'initialization' }
IceExternalJob >> initialize [

super initialize.
started := false
started := false.
current := 0.
min := 0.
max := 100
]

{ #category : 'accessing' }
Expand Down

0 comments on commit 76166cf

Please sign in to comment.