Skip to content

Commit

Permalink
Remove ; in enums
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBoulongne committed Sep 3, 2024
1 parent 7b0d102 commit 92acdcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ enum class DownloadLimit(val value: String) {
TWO_HUNDRED_FIFTY("250"),
ONE_HUNDRED("100"),
TWENTY("20"),
ONE("1");
ONE("1"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ enum class EmailLanguage(val value: String) {
FRENCH("french"),
GERMAN("german"),
ITALIAN("italian"),
SPANISH("spanish");
SPANISH("spanish"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ package com.infomaniak.multiplatform_swisstransfer.common.models
enum class Theme(val value: String) {
SYSTEM("system"),
LIGHT("light"),
DARK("dark");
DARK("dark"),
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ enum class ValidityPeriod(val value: String) {
THIRTY("30"),
FIFTEEN("15"),
SEVEN("7"),
ONE("1");
ONE("1"),
}

0 comments on commit 92acdcd

Please sign in to comment.