summaryrefslogtreecommitdiff
path: root/sources/scalac/symtab
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-02-28 02:26:59 +0000
committerpaltherr <paltherr@epfl.ch>2004-02-28 02:26:59 +0000
commit531b370021612f00616432eb8914bca887120373 (patch)
tree147614804d4da76e516ef71e0a1505e7cd3b7558 /sources/scalac/symtab
parentfffd640953bec72148093574eec60350f7b0bb58 (diff)
downloadscala-531b370021612f00616432eb8914bca887120373.tar.gz
scala-531b370021612f00616432eb8914bca887120373.tar.bz2
scala-531b370021612f00616432eb8914bca887120373.zip
- Removed method TermSymbol.thisType()
Diffstat (limited to 'sources/scalac/symtab')
-rw-r--r--sources/scalac/symtab/Symbol.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/sources/scalac/symtab/Symbol.java b/sources/scalac/symtab/Symbol.java
index e46aac478f..6c29085211 100644
--- a/sources/scalac/symtab/Symbol.java
+++ b/sources/scalac/symtab/Symbol.java
@@ -1376,12 +1376,6 @@ public class TermSymbol extends Symbol {
.setInfo(Type.NoType);
}
- /** Get this.type corresponding to this class or module
- */
- public Type thisType() {
- if ((flags & MODUL) != 0) return moduleClass().thisType();
- else return Type.localThisType;
- }
/** Get the fully qualified name of this Symbol */
public Name fullName() {
if (clazz != null) return clazz.fullName();