Remove random semicolons

This commit is contained in:
Sasha Koshka 2024-07-27 02:17:41 -04:00
parent b883542f3b
commit 987f4bfc4a

View File

@ -50,7 +50,7 @@ func (column Column) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
if !hints.OverflowY {
gaps := boxes.Len() - 1
freeSpace := float64(hints.Bounds.Dy() - hints.Gap.Y * gaps)
nExpanding := 0;
nExpanding := 0
for index := 0; index < boxes.Len(); index ++ {
if expands(index) {
nExpanding ++
@ -121,7 +121,7 @@ func (row Row) Arrange (hints tomo.LayoutHints, boxes tomo.BoxArranger) {
if !hints.OverflowY {
gaps := boxes.Len() - 1
freeSpace := float64(hints.Bounds.Dx() - hints.Gap.X * gaps)
nExpanding := 0;
nExpanding := 0
for index := 0; index < boxes.Len(); index ++ {
if expands(index) {
nExpanding ++