Skip to content

Commit

Permalink
Simplify SystemVersion class>>#current
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusDenker committed Mar 24, 2021
1 parent 5c758a7 commit e9ef2b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/System-Support/SystemVersion.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ Class {

{ #category : #accessing }
SystemVersion class >> current [
Current ifNil: [Current := SystemVersion new].
^Current
^Current ifNil: [Current := self new]
]

{ #category : #'private - accessing' }
Expand Down

0 comments on commit e9ef2b8

Please sign in to comment.