You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to what is done in Pharo using pharo-project/pharo#10396
we could remove unnecessary trailing spaces and newlines also at the end of Seaside methods:
We could apply the following script:
badCases :=SystemNavigation default allMethodsSelect: [ :each | each sourceCode trimRight size ~= each sourceCode size ].
fixInPackage := badCases select: [:each | each package name beginsWith:'Seaside' ].
fixInPackage do: [:each |
| refactoringclassOrTrait |
classOrTrait := each traitSource ifNil: [ each methodClass ] ifNotNil: [ each traitSource innerClass ].
refactoring :=RBAddMethodChangecompile: each sourceCode trimRight in: classOrTrait for:nil.
refactoring execute
]
The text was updated successfully, but these errors were encountered:
astares
changed the title
Cleanup newlines and blanks in "OpalCompiler" packages
Cleanup newlines and blanks in "Seaside" packages
Dec 8, 2021
astares
added a commit
to astares/Seaside
that referenced
this issue
Dec 8, 2021
Similar to what is done in Pharo using pharo-project/pharo#10396
we could remove unnecessary trailing spaces and newlines also at the end of Seaside methods:
We could apply the following script:
The text was updated successfully, but these errors were encountered: