langtools/src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java
changeset 24066 1dfb66929538
parent 17578 46ac954e4a84
child 24069 dfb8f11542fc
--- a/langtools/src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java	Fri Apr 18 17:25:43 2014 -0700
+++ b/langtools/src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java	Mon Apr 21 22:51:49 2014 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -56,9 +56,9 @@
             return null;
         } else {
             tree.accept(this);
-            JCTree result = this.result;
+            JCTree tmpResult = this.result;
             this.result = null;
-            return (T)result; // XXX cast
+            return (T)tmpResult; // XXX cast
         }
     }