src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java

changeset 2370
acd64168cf8b
parent 1755
ddb4a2bfcd82
child 2525
2eb010b6cb22
     1.1 --- a/src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java	Fri Apr 18 23:58:05 2014 +0100
     1.2 +++ b/src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java	Tue Apr 22 17:55:22 2014 +0100
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 2014, 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 @@ -56,9 +56,9 @@
    1.11              return null;
    1.12          } else {
    1.13              tree.accept(this);
    1.14 -            JCTree result = this.result;
    1.15 +            JCTree tmpResult = this.result;
    1.16              this.result = null;
    1.17 -            return (T)result; // XXX cast
    1.18 +            return (T)tmpResult; // XXX cast
    1.19          }
    1.20      }
    1.21  

mercurial