Skip to content

Commit 579dc06

Browse files
committed
Code quality
1 parent 47398f1 commit 579dc06

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Flow.Launcher.Plugin/Result.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public string CopyText
6060
/// <remarks>GlyphInfo is prioritized if not null</remarks>
6161
public string IcoPath
6262
{
63-
get { return _icoPath; }
63+
get => _icoPath;
6464
set
6565
{
6666
// As a standard this property will handle prepping and converting to absolute local path for icon image processing
@@ -101,7 +101,6 @@ public string IcoPath
101101
/// </summary>
102102
public GlyphInfo Glyph { get; init; }
103103

104-
105104
/// <summary>
106105
/// An action to take in the form of a function call when the result has been selected.
107106
/// </summary>
@@ -143,7 +142,7 @@ public string IcoPath
143142
/// </summary>
144143
public string PluginDirectory
145144
{
146-
get { return _pluginDirectory; }
145+
get => _pluginDirectory;
147146
set
148147
{
149148
_pluginDirectory = value;

0 commit comments

Comments
 (0)