Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove already existing equality test #32

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/Pyramid-Bloc/BlColorPaint.extension.st
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
Extension { #name : #BlColorPaint }

{ #category : #'*Pyramid-Bloc' }
BlColorPaint >> = aBlPaint [

super = aBlPaint ifFalse: [ ^ false ].
^ self color = aBlPaint color
]

{ #category : #'*Pyramid-Bloc' }
BlColorPaint >> asForm [

Expand Down
3 changes: 2 additions & 1 deletion src/Pyramid-Bloc/BlGradientPaint.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Extension { #name : #BlGradientPaint }
{ #category : #'*Pyramid-Bloc' }
BlGradientPaint >> = aBlPaint [

super = aBlPaint ifFalse: [ ^ false ].
self == aBlPaint ifTrue: [ ^ true ].
self class == aBlPaint class ifFalse: [ ^ false ].
^ self stops = aBlPaint stops
]

Expand Down
7 changes: 0 additions & 7 deletions src/Pyramid-Bloc/BlPaint.extension.st
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
Extension { #name : #BlPaint }

{ #category : #'*Pyramid-Bloc' }
BlPaint >> = anObject [

anObject == self ifTrue: [ ^ true ].
^ anObject class = self class
]

{ #category : #'*Pyramid-Bloc' }
BlPaint >> asForm [

Expand Down
7 changes: 0 additions & 7 deletions src/Pyramid-Bloc/BlPaintBackground.extension.st
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
Extension { #name : #BlPaintBackground }

{ #category : #'*Pyramid-Bloc' }
BlPaintBackground >> = aBlBackground [

super = aBlBackground ifFalse: [ ^ false ].
^ self paint = aBlBackground paint
]

{ #category : #'*Pyramid-Bloc' }
BlPaintBackground >> asForm [

Expand Down