File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
flutter-idea/src/io/flutter Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change 55
55
import io .flutter .view .InspectorViewFactory ;
56
56
import org .jetbrains .annotations .NotNull ;
57
57
58
- import java .time .LocalDate ;
59
58
import java .util .List ;
60
59
import java .util .concurrent .ExecutionException ;
61
60
import java .util .concurrent .Executors ;
@@ -333,12 +332,7 @@ private void showAndroidStudioBotNotification(@NotNull Project project) {
333
332
334
333
// Return if notification has been shown already
335
334
final FlutterSettings settings = FlutterSettings .getInstance ();
336
- if (settings == null || settings .isAndroidStudioBotAcknowledged ()) return ;
337
-
338
- // Return if the current date is not after May 16th, 2025
339
- LocalDate targetLocalDate = LocalDate .of (2025 , 5 , 16 );
340
- LocalDate nowLocalDate = LocalDate .now ();
341
- if (nowLocalDate .isBefore (targetLocalDate )) return ;
335
+ if (settings .isAndroidStudioBotAcknowledged ()) return ;
342
336
343
337
ApplicationManager .getApplication ().invokeLater (() -> {
344
338
//noinspection DialogTitleCapitalization
You can’t perform that action at this time.
0 commit comments