Skip to content

Commit

Permalink
Remove unnecessary comment in BalloonEngine>>initialize
Browse files Browse the repository at this point in the history
Fix #3865
  • Loading branch information
astares committed Jul 10, 2019
1 parent 892a852 commit 8606473
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Balloon/BalloonEngine.class.st
Expand Up @@ -63,14 +63,14 @@ BalloonEngine class >> doProfileStats: aBool [

{ #category : #initialization }
BalloonEngine class >> initialize [
"BalloonEngine initialize"
BufferCache := WeakArray new: 1.
Smalltalk garbageCollect. "Make the cache old"
CacheProtect := Semaphore forMutualExclusion.
Times := WordArray new: 10.
Counts := WordArray new: 10.
BezierStats := WordArray new: 4.
Debug ifNil:[Debug := false].
Debug ifNil: [Debug := false]
]

{ #category : #private }
Expand Down

0 comments on commit 8606473

Please sign in to comment.