Skip to content

Commit b87f233

Browse files
committed
Code quality
1 parent 14310d2 commit b87f233

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,9 @@ public bool KeepMaxResults
359359

360360
public int ActivateTimes { get; set; }
361361

362-
public ObservableCollection<CustomPluginHotkey> CustomPluginHotkeys { get; set; } = new ObservableCollection<CustomPluginHotkey>();
362+
public ObservableCollection<CustomPluginHotkey> CustomPluginHotkeys { get; set; } = new();
363363

364-
public ObservableCollection<CustomShortcutModel> CustomShortcuts { get; set; } = new ObservableCollection<CustomShortcutModel>();
364+
public ObservableCollection<CustomShortcutModel> CustomShortcuts { get; set; } = new();
365365

366366
[JsonIgnore]
367367
public ObservableCollection<BaseBuiltinShortcutModel> BuiltinShortcuts { get; set; } = new()
@@ -432,7 +432,7 @@ public bool ShowAtTopmost
432432
public bool WMPInstalled { get; set; } = true;
433433

434434
// This needs to be loaded last by staying at the bottom
435-
public PluginsSettings PluginSettings { get; set; } = new PluginsSettings();
435+
public PluginsSettings PluginSettings { get; set; } = new();
436436

437437
[JsonIgnore]
438438
public List<RegisteredHotkeyData> RegisteredHotkeys

0 commit comments

Comments
 (0)