In the following code, inline the "load" method.
The first arg is corrctly changed, but not the second.

public class Inline {

      public void XYZ(B other) {
         other.load();
     }
}

class B {

     public int a;
     public int b;

     public void load() {
         B.loadStatic(a, b);
     }

     public static void loadStatic(int x, int y) {

     }

}

-- 
Erb


_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to