Skip to content

Commit 446231c

Browse files
committed
Remove information write.
1 parent 9cee5c9 commit 446231c

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

src/Common/Commands.Common/AzurePSCmdlet.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -327,12 +327,6 @@ protected bool IsVerbose()
327327
base.WriteObject(sendToPipeline, enumerateCollection);
328328
}
329329

330-
protected new void WriteInformation(object text, string[] tags)
331-
{
332-
FlushDebugMessages();
333-
base.WriteInformation(text, tags);
334-
}
335-
336330
protected new void WriteVerbose(string text)
337331
{
338332
FlushDebugMessages();

src/ResourceManager/Compute/Commands.Compute/Extension/AEM/GetAzureRmVMAEMExtension.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,6 @@ public override void ExecuteCmdlet()
127127
});
128128
}
129129

130-
private void WriteInformation(string message, params string[] args)
131-
{
132-
base.WriteInformation(String.Format(message, args), new string[0]);
133-
}
134-
135130
private void WriteVerbose(string message, params object[] args)
136131
{
137132
base.WriteVerbose(String.Format(message, args));

0 commit comments

Comments
 (0)