Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/monodoc/Monodoc/Node_Legacy.cs')
-rw-r--r--mcs/class/monodoc/Monodoc/Node_Legacy.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/class/monodoc/Monodoc/Node_Legacy.cs b/mcs/class/monodoc/Monodoc/Node_Legacy.cs
deleted file mode 100644
index 6e3d7f5315a..00000000000
--- a/mcs/class/monodoc/Monodoc/Node_Legacy.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.IO;
-using System.Text;
-using System.Linq;
-using System.Xml;
-using System.Collections.Generic;
-
-#if LEGACY_MODE
-
-namespace Monodoc
-{
- public partial class Node
- {
- [Obsolete ("Use `Tree' instead of 'tree'")]
- public Tree tree {
- get {
- return this.Tree;
- }
- }
-
- [Obsolete ("Use TreeDumper")]
- public static void PrintTree (Tree t)
- {
- TreeDumper.PrintTree (t.RootNode);
- }
-
-
- }
-}
-
-#endif