Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ofekby committed Nov 22, 2023
1 parent ebff99d commit a98c1db
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ public TabnineStatusBarWidget(@NotNull Project project) {
.useState(
this,
capabilities -> {
Boolean newForceRegistration = capabilities.isReady() ? capabilities.isEnabled(Capability.FORCE_REGISTRATION) : null;
Boolean newForceRegistration =
capabilities.isReady()
? capabilities.isEnabled(Capability.FORCE_REGISTRATION)
: null;

if (isForcedRegistration != newForceRegistration) {
isForcedRegistration = newForceRegistration;
Expand Down

0 comments on commit a98c1db

Please sign in to comment.