Skip to content

Commit 30cfe0d

Browse files
Nivaldo Bondançafacebook-github-bot
Nivaldo Bondança
authored andcommitted
Fix compilation buck of ktfmt idea plugin after PR 502
Summary: [This PR](#502) converted the code to Kotlin, but we forgot to adapt our internal buck compilation to it and as a result things are failing. ``` BUILD FAILED File not found: `fbsource//xplat/ktfmt/ktfmt_idea_plugin/src/main/java/com/facebook/ktfmt/intellij/Notifications.java` ``` Reviewed By: cortinico Differential Revision: D61208006 fbshipit-source-id: c90f8de7920ab86cda279b07daf7a59b7777a8c2
1 parent 36863be commit 30cfe0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ktfmt_idea_plugin/src/main/kotlin/com/facebook/ktfmt/intellij/KtfmtConfigurable.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class KtfmtConfigurable(project: Project) :
4949
}
5050

5151
row {
52-
comboBox(UiFormatterStyle.entries.toList())
52+
comboBox(UiFormatterStyle.values().toList())
5353
.label("Code style:")
5454
.bindItem(
5555
getter = { settings.uiFormatterStyle },

0 commit comments

Comments
 (0)