Revision: 7290 Author: [email protected] Date: Wed Dec 9 20:29:56 2009 Log: variable naming fix as suggested by Scott.
Review by: scottb http://code.google.com/p/google-web-toolkit/source/detail?r=7290 Modified: /trunk/dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRunAsyncs.java ======================================= --- /trunk/dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRunAsyncs.java Wed Dec 9 10:31:24 2009 +++ /trunk/dev/core/src/com/google/gwt/dev/jjs/impl/ReplaceRunAsyncs.java Wed Dec 9 20:29:56 2009 @@ -225,13 +225,13 @@ /** * Extract the initializer of AsyncFragmentLoader.BROWSER_LOADER. A couple of - * parts of the compiler modify this constructor call. + * parts of the compiler modify this initializer call. */ static JMethodCall getBrowserLoaderConstructor(JProgram program) { JField field = program.getIndexedField("AsyncFragmentLoader.BROWSER_LOADER"); - JMethodCall constructorCall = (JMethodCall) field.getDeclarationStatement().getInitializer(); - assert constructorCall.getArgs().size() == 2; - return constructorCall; + JMethodCall initializerCall = (JMethodCall) field.getDeclarationStatement().getInitializer(); + assert initializerCall.getArgs().size() == 2; + return initializerCall; } /** -- http://groups.google.com/group/Google-Web-Toolkit-Contributors
