Skip to content

Commit 39b096d

Browse files
author
slavara
committed
[ci skip] cleanup...
1 parent bdd6c4c commit 39b096d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

PostfixCodeCompletion/PluginMain.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ public class PluginMain : IPlugin
3232

3333
#region Required Properties
3434

35-
public int Api { get { return 1; }}
35+
public int Api => 1;
3636

37-
public string Name { get { return "PostfixCodeCompletion"; }}
37+
public string Name => "PostfixCodeCompletion";
3838

39-
public string Guid { get { return "21d9ab3e-93e4-4460-9298-c62f87eed7ba"; }}
39+
public string Guid => "21d9ab3e-93e4-4460-9298-c62f87eed7ba";
4040

41-
public string Help { get { return ""; }}
41+
public string Help => string.Empty;
4242

43-
public string Author { get { return "SlavaRa"; }}
43+
public string Author => "SlavaRa";
4444

45-
public string Description { get { return "Postfix code completion helps reduce backward caret jumps as you write code"; }}
45+
public string Description => "Postfix code completion helps reduce backward caret jumps as you write code";
4646

4747
public object Settings { get; private set; }
4848

@@ -549,7 +549,7 @@ static void OnFunctionTypeResult(HaxeComplete hc, HaxeCompleteResult result, Hax
549549
#endregion
550550
}
551551

552-
class PostfixCompletionItem : ICompletionListItem
552+
internal class PostfixCompletionItem : ICompletionListItem
553553
{
554554
readonly string template;
555555
readonly ASResult expr;

0 commit comments

Comments
 (0)