Skip to content

Commit 5d5638b

Browse files
committed
style: rerun scalastyle
1 parent c1a735b commit 5d5638b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

online-compiler/src/main/scala/it/unibo/scafi/compiler/ExtLib.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ trait URLLib {
1919
case (av :: atail, bv :: btail) =>
2020
if (av == bv) {
2121
compare(atail, btail)
22-
} else if(av > bv) {
22+
} else if (av > bv) {
2323

2424
1
2525
} else {

scafi-web/src/main/scala/it/unibo/scafi/js/view/static/SkeletonPage.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,14 +178,12 @@ object SkeletonPage {
178178
)
179179

180180
lazy val selectModeButton: Label = label(
181-
// `class` := "btn btn-secondary active",
182181
`class` := primaryBtnClass,
183182
input(
184183
`type` := "radio",
185184
name := PanMoveModeFormName,
186185
id := MoveModeFormValue,
187186
value := MoveModeFormValue
188-
// checked := true
189187
),
190188
i(
191189
id := "move-toggle",
@@ -196,7 +194,6 @@ object SkeletonPage {
196194

197195
lazy val panModeButton: Label = label(
198196
`class` := primaryBtnClass("active"),
199-
// `class` := "btn btn-secondary",
200197
input(
201198
`type` := "radio",
202199
name := PanMoveModeFormName,

0 commit comments

Comments
 (0)