Skip to content

Commit

Permalink
Fix compilation buck of ktfmt idea plugin after PR 502
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Nivaldo Bondança authored and facebook-github-bot committed Aug 14, 2024
1 parent 36863be commit 30cfe0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class KtfmtConfigurable(project: Project) :
}

row {
comboBox(UiFormatterStyle.entries.toList())
comboBox(UiFormatterStyle.values().toList())
.label("Code style:")
.bindItem(
getter = { settings.uiFormatterStyle },
Expand Down

0 comments on commit 30cfe0d

Please sign in to comment.