Skip to content

Commit 00de861

Browse files
committed
Remove useless obsolete constructor
1 parent ae5186d commit 00de861

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Flow.Launcher.Plugin/Query.cs

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text.Json.Serialization;
1+
using System.Text.Json.Serialization;
52

63
namespace Flow.Launcher.Plugin
74
{
85
public class Query
96
{
107
public Query() { }
118

12-
[Obsolete("Use the default Query constructor.")]
13-
public Query(string rawQuery, string search, string[] terms, string[] searchTerms, string actionKeyword = "")
14-
{
15-
Search = search;
16-
RawQuery = rawQuery;
17-
SearchTerms = searchTerms;
18-
ActionKeyword = actionKeyword;
19-
}
20-
219
/// <summary>
2210
/// Raw query, this includes action keyword if it has
2311
/// We didn't recommend use this property directly. You should always use Search property.

0 commit comments

Comments
 (0)