Skip to content

Commit

Permalink
give a default min/max/current default values
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Jan 24, 2024
1 parent 26f864c commit d6b1773
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions 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 All @@ -49,7 +53,8 @@ IceExternalJob >> max: anInteger [
]

{ #category : 'accessing' }
IceExternalJob >> min: anInteger [
IceExternalJob >> min: anInteger [

min := anInteger
]

Expand Down

0 comments on commit d6b1773

Please sign in to comment.