Skip to content

Commit

Permalink
Fix several class-side "super initialize"
Browse files Browse the repository at this point in the history
Fixes #402
  • Loading branch information
tinchodias committed Jan 17, 2024
1 parent da7b455 commit b2f6479
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 51 deletions.
5 changes: 0 additions & 5 deletions src/Bloc/BlBottomAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlBottomAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlBottomAlignment class >> leftToRight [
^ self bottom
Expand Down
1 change: 0 additions & 1 deletion src/Bloc/BlElementAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ BlElementAlignment class >> horizontal [

{ #category : #'class initialization' }
BlElementAlignment class >> initialize [
super initialize.

start := BlStartAlignment new.
middle := BlMiddleAlignment new.
Expand Down
3 changes: 1 addition & 2 deletions src/Bloc/BlHorizontalAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ BlHorizontalAlignment class >> directed: aBlLayoutDirection [

{ #category : #'class initialization' }
BlHorizontalAlignment class >> initialize [
super initialize.

left := BlLeftAlignment new.
right := BlRightAlignment new.
center := BlHorizontalCenterAlignment new.
start := BlHorizontalStartAlignment new.
end := BlHorizontalEndAlignment new.
end := BlHorizontalEndAlignment new
]

{ #category : #factory }
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlHorizontalCenterAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlHorizontalCenterAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlHorizontalCenterAlignment class >> leftToRight [
^ self center
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlHorizontalEndAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlHorizontalEndAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlHorizontalEndAlignment class >> leftToRight [
^ self right
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlHorizontalStartAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlHorizontalStartAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlHorizontalStartAlignment class >> leftToRight [
^ self left
Expand Down
1 change: 0 additions & 1 deletion src/Bloc/BlLayoutDirection.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ Class {

{ #category : #'class initialization' }
BlLayoutDirection class >> initialize [
super initialize.

leftToRight := BlLayoutLeftToRight new.
rightToLeft := BlLayoutRightToLeft new
Expand Down
1 change: 0 additions & 1 deletion src/Bloc/BlLayoutOrientation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ BlLayoutOrientation class >> horizontal [

{ #category : #'class initialization' }
BlLayoutOrientation class >> initialize [
super initialize.

horizontal := BlLayoutHorizontal new.
vertical := BlLayoutVertical new
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlLeftAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlLeftAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlLeftAlignment class >> leftToRight [
^ self left
Expand Down
3 changes: 1 addition & 2 deletions src/Bloc/BlNullAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ Class {

{ #category : #'class initialization' }
BlNullAlignment class >> initialize [
super initialize.

vertical := BlNullVerticalAlignment new.
horizontal := BlNullHorizontalAlignment new.
horizontal := BlNullHorizontalAlignment new
]

{ #category : #factory }
Expand Down
1 change: 0 additions & 1 deletion src/Bloc/BlNullHorizontalAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ BlNullHorizontalAlignment class >> directed: aBlLayoutDirection [

{ #category : #'class initialization' }
BlNullHorizontalAlignment class >> initialize [
super initialize.

rightToLeft := BlNullRightAlignment new.
leftToRight := BlNullLeftAlignment new
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlRightAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlRightAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlRightAlignment class >> leftToRight [
^ self right
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlTopAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlTopAlignment class >> initialize [
super initialize.
]

{ #category : #factory }
BlTopAlignment class >> leftToRight [
^ self top
Expand Down
1 change: 0 additions & 1 deletion src/Bloc/BlVerticalAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ BlVerticalAlignment class >> end [

{ #category : #'class initialization' }
BlVerticalAlignment class >> initialize [
super initialize.

top := BlTopAlignment new.
center := BlVerticalCenterAlignment new.
Expand Down
5 changes: 0 additions & 5 deletions src/Bloc/BlVerticalCenterAlignment.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ Class {
#category : #'Bloc-Layouts-Alignment'
}

{ #category : #'class initialization' }
BlVerticalCenterAlignment class >> initialize [
super initialize
]

{ #category : #factory }
BlVerticalCenterAlignment class >> leftToRight [
^ self center
Expand Down
3 changes: 1 addition & 2 deletions src/Bloc/BlViscousFluidInterpolator.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@ Class {
#category : #'Bloc-Basic-Interpolators'
}

{ #category : #initialization }
{ #category : #'class initialization' }
BlViscousFluidInterpolator class >> initialize [
super initialize.

InvertedExponent := 1.0 / Float e.
"Controls the viscous fluid effect (how much of it)"
Expand Down

0 comments on commit b2f6479

Please sign in to comment.