Skip to content

Commit ce10493

Browse files
committed
code_style: remove unnecessary namespace using
Signed-off-by: leo <[email protected]>
1 parent 3ac803d commit ce10493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/QueryStashes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public QueryStashes(string repo)
1919
if (!rs.IsSuccess)
2020
return outs;
2121

22-
var items = rs.StdOut.Split('\0', System.StringSplitOptions.RemoveEmptyEntries);
22+
var items = rs.StdOut.Split('\0', StringSplitOptions.RemoveEmptyEntries);
2323
foreach (var item in items)
2424
{
2525
var current = new Models.Stash();

0 commit comments

Comments
 (0)