You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support Intellij 212 API level (2021.2 EAP). The type signature changed from Collection<TextRange> to Collection<? extends TextRange>. This is inspired by same fix in bazel intellij plugin to avoid compiling multiple versions
* Add support for java 14 language features. * Break: Increase minimum source compatibility from java 8 to java 11. * To use version 2.x of the formatter, you need to run on java 11 or higher. * If you require the formatter to run on java 8, you won't be able to upgrade past version 1.x. Note that you can still produce java 8 jars from your repo but need to use at least java 11 to run the formatter.
Explicitly extend the IntelliJ CodeStyleManagerImpl so that any methods added in newer releases are inherited automatically with a reasonable default implementation.