6878147: Keywords.log is declared and initialized but unused

Fri, 08 Jan 2010 11:11:33 -0800

author
jjg
date
Fri, 08 Jan 2010 11:11:33 -0800
changeset 459
c315df443ff2
parent 458
d4e0ae9b4ecb
child 460
2d15bf467aea

6878147: Keywords.log is declared and initialized but unused
Reviewed-by: darcy

src/share/classes/com/sun/tools/javac/parser/Keywords.java file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/classes/com/sun/tools/javac/parser/Keywords.java	Wed Jan 06 13:16:48 2010 -0800
     1.2 +++ b/src/share/classes/com/sun/tools/javac/parser/Keywords.java	Fri Jan 08 11:11:33 2010 -0800
     1.3 @@ -51,12 +51,10 @@
     1.4          return instance;
     1.5      }
     1.6  
     1.7 -    private final Log log;
     1.8      private final Names names;
     1.9  
    1.10      protected Keywords(Context context) {
    1.11          context.put(keywordsKey, this);
    1.12 -        log = Log.instance(context);
    1.13          names = Names.instance(context);
    1.14  
    1.15          for (Token t : Token.values()) {

mercurial