Skip to content

Commit 15c9918

Browse files
misc codacy fixes
1 parent a474f1d commit 15c9918

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/PowerShellEditorServices.Engine/Services/TextDocument/Handlers/CompletionHandler.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ public CompletionHandler(
4747

4848
public CompletionRegistrationOptions GetRegistrationOptions()
4949
{
50-
return new CompletionRegistrationOptions()
50+
return new CompletionRegistrationOptions
5151
{
52-
DocumentSelector = new DocumentSelector(new DocumentFilter() { Pattern = "**/*.ps*1" }),
52+
DocumentSelector = new DocumentSelector(new DocumentFilter { Pattern = "**/*.ps*1" }),
5353
ResolveProvider = true,
54-
TriggerCharacters = new string[] { ".", "-", ":", "\\" }
54+
TriggerCharacters = new[] { ".", "-", ":", "\\" }
5555
};
5656
}
5757

0 commit comments

Comments
 (0)