src/share/classes/com/sun/tools/javac/code/Symbol.java

changeset 815
d17f37522154
parent 780
1d625fbe6c22
child 816
7c537f4298fb
     1.1 --- a/src/share/classes/com/sun/tools/javac/code/Symbol.java	Wed Jan 05 09:59:01 2011 +0000
     1.2 +++ b/src/share/classes/com/sun/tools/javac/code/Symbol.java	Mon Jan 10 14:57:59 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -100,17 +100,6 @@
    1.11       */
    1.12      public Type type;
    1.13  
    1.14 -    /** The type annotations targeted to a tree directly owned by this symbol
    1.15 -     */
    1.16 -    // type annotations are stored here for two purposes:
    1.17 -    //  - convenient location to store annotations for generation after erasure
    1.18 -    //  - a private interface for accessing type annotations parsed from
    1.19 -    //    classfiles
    1.20 -    //  the field is populated for the following declaration only
    1.21 -    //  class, field, variable and type parameters
    1.22 -    //
    1.23 -    public List<Attribute.TypeCompound> typeAnnotations;
    1.24 -
    1.25      /** The owner of this symbol.
    1.26       */
    1.27      public Symbol owner;
    1.28 @@ -133,7 +122,6 @@
    1.29          this.completer = null;
    1.30          this.erasure_field = null;
    1.31          this.attributes_field = List.nil();
    1.32 -        this.typeAnnotations = List.nil();
    1.33          this.name = name;
    1.34      }
    1.35  

mercurial