Skip to content

Commit e23bcc7

Browse files
authored
Merge pull request #17 from unv-unv/compilation-fix
Fixing compilation after platform update
2 parents 8804dc0 + f2d477c commit e23bcc7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

plugin/src/main/java/org/jetbrains/plugins/gradle/service/settings/GradleProjectSettingsControl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ void showBalloonIfNecessary() {
374374

375375
private class DelayedBalloonInfo implements Runnable {
376376
private final NotificationType myMessageType;
377-
private final String myText;
377+
private final LocalizeValue myText;
378378
private final long myTriggerTime;
379379

380380
DelayedBalloonInfo(@Nonnull NotificationType messageType, @Nonnull LocationSettingType settingType, long delayMillis) {
@@ -395,7 +395,7 @@ public void run() {
395395
// Don't schedule the balloon if the configurable is hidden.
396396
return;
397397
}
398-
ExternalSystemUiUtil.showBalloon(myGradleHomePathField, myMessageType, myText);
398+
ExternalSystemUiUtil.showBalloon(myGradleHomePathField, myMessageType, myText.get());
399399
}
400400
}
401401
}

0 commit comments

Comments
 (0)