-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pavel Bansky
committed
Dec 1, 2017
1 parent
ae77c03
commit e19a859
Showing
4 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/Microsoft.DevSkim/Microsoft.DevSkim.CLI/Writers/DummyWriter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright (C) Microsoft. All rights reserved. | ||
// Licensed under the MIT License. See LICENSE.txt in the project root for license information. | ||
|
||
namespace Microsoft.DevSkim.CLI.Writers | ||
{ | ||
public class DummyWriter : Writer | ||
{ | ||
public override void WriteIssue(IssueRecord issue) | ||
{ | ||
// This is intentionaly empty | ||
} | ||
|
||
public override void FlushAndClose() | ||
{ | ||
// This is intentionaly empty | ||
} | ||
|
||
} | ||
} |
11 changes: 0 additions & 11 deletions
11
src/Microsoft.DevSkim/Microsoft.DevSkim.CLI/Writers/IWritter.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters