diff --git a/src/Tools/Source/CompilerGeneratorTools/Source/CSharpSyntaxGenerator/Program.cs b/src/Tools/Source/CompilerGeneratorTools/Source/CSharpSyntaxGenerator/Program.cs index de57c459fdbfafb825ea5321b56fcdd6bfdbfc40..de9fec807dc9b1972c65d81b3ec4ea8a873efd2f 100644 --- a/src/Tools/Source/CompilerGeneratorTools/Source/CSharpSyntaxGenerator/Program.cs +++ b/src/Tools/Source/CompilerGeneratorTools/Source/CSharpSyntaxGenerator/Program.cs @@ -107,7 +107,6 @@ private static void WriteToFile(Tree tree, Action writeAction, { outFile.Write(text); } - Console.WriteLine("Wrote {0}", outputFile); } catch (UnauthorizedAccessException) { diff --git a/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/Program.vb b/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/Program.vb index 334f0dcd0e4df94bcdddd0cd177ad3feff9c632d..7938edbe47f755addd83bb7a12cbbfdec2895134 100644 --- a/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/Program.vb +++ b/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/Program.vb @@ -134,7 +134,6 @@ Friend Module Program End Select - WriteLine("{0} node structures, {1} enumerations, {2} node kinds", definition.NodeStructures.Count, definition.Enumerations.Count, definition.NodeKinds.Count) End Using End Sub diff --git a/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/XML/ReadTree.vb b/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/XML/ReadTree.vb index 9fbde7fd4d5d313887a5286de36aa59ead001de0..209593987c91e914dd381c36a87b11aeadb2e164 100644 --- a/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/XML/ReadTree.vb +++ b/src/Tools/Source/CompilerGeneratorTools/Source/VisualBasicSyntaxGenerator/XML/ReadTree.vb @@ -19,7 +19,6 @@ Public Module ReadTree Public Function TryReadTheTree(fileName As String, ByRef tree As ParseTree) As Boolean tree = Nothing - Console.WriteLine("Reading input file ""{0}""...", fileName) Dim validationError As Boolean = False Dim xDoc = GetXDocument(fileName, validationError)