langtools/test/tools/javac/api/6440528/T6440528.java
changeset 4073 9788f4549740
parent 10 06bc494ca11e
child 5520 86e4b9a9da40
--- a/langtools/test/tools/javac/api/6440528/T6440528.java	Tue Oct 13 15:26:30 2009 -0700
+++ b/langtools/test/tools/javac/api/6440528/T6440528.java	Wed Oct 14 15:41:28 2009 -0700
@@ -59,9 +59,9 @@
     }
 
     private File getUnderlyingFile(Object o) throws Exception {
-        Field f = o.getClass().getDeclaredField("f");
-        f.setAccessible(true);
-        return (File)f.get(o);
+        Field file = o.getClass().getDeclaredField("file");
+        file.setAccessible(true);
+        return (File)file.get(o);
     }
 
     public static void main(String... args) throws Exception {