summaryrefslogtreecommitdiff
path: root/sources/scalac/ast/StrictTreeCopier.java.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/ast/StrictTreeCopier.java.tmpl')
-rw-r--r--sources/scalac/ast/StrictTreeCopier.java.tmpl35
1 files changed, 0 insertions, 35 deletions
diff --git a/sources/scalac/ast/StrictTreeCopier.java.tmpl b/sources/scalac/ast/StrictTreeCopier.java.tmpl
deleted file mode 100644
index f82653279a..0000000000
--- a/sources/scalac/ast/StrictTreeCopier.java.tmpl
+++ /dev/null
@@ -1,35 +0,0 @@
-/* ____ ____ ____ ____ ______ *\
-** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
-** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
-** /_____/\____/\___/\____/____/ **
-\* */
-
-// $Id$
-
-package scalac.ast;
-
-{#Imports#}
-
-/** A tree copier that returns always a new tree */
-public class StrictTreeCopier implements TreeCopier {
-
- //########################################################################
- // Protected Fields
-
- /** The tree factory used to create the tree copies */
- protected final TreeFactory make;
-
- //########################################################################
- // Public Constructors
-
- public StrictTreeCopier(TreeFactory make) {
- this.make = make;
- }
-
- //########################################################################
- // Public Methods
-
- {#TreeMethods#}
-
- //########################################################################
-}