Skip to content

Commit

Permalink
fix code warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dcsmf committed Oct 27, 2023
1 parent 58b2d52 commit 5b9792d
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class AppSettingsConfigurable(project: Project) : BoundConfigurable(message("set
.comment(message("modifierLabel"))
.bindSelected({ appSettingsState.modifier },
{ value -> appSettingsState.modifier = value })
.gap(RightGap.COLUMNS)
},
{
checkBox(message("genericTypeParameter"))
Expand All @@ -42,7 +41,6 @@ class AppSettingsConfigurable(project: Project) : BoundConfigurable(message("set
.comment(message("returnTypeLabel"))
.bindSelected({ appSettingsState.returnType },
{ value -> appSettingsState.returnType = value })
.gap(RightGap.COLUMNS)
},
{
checkBox(message("methodName"))
Expand All @@ -57,7 +55,6 @@ class AppSettingsConfigurable(project: Project) : BoundConfigurable(message("set
.comment(message("parametersLabel"))
.bindSelected({ appSettingsState.parameters },
{ value -> appSettingsState.parameters = value })
.gap(RightGap.COLUMNS)
},
{
checkBox(
Expand Down

0 comments on commit 5b9792d

Please sign in to comment.