diff -r 8a4543b30586 -r 86b773b7cb40 test/tools/javac/api/6440528/T6440528.java --- a/test/tools/javac/api/6440528/T6440528.java Tue Oct 13 15:26:30 2009 -0700 +++ b/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 {