public class A {
int x = 5;
public void foo(int x) {
System.out.println(x); // Access to the parameter x
}
}
When asking for accesses to the parameter x of the foo method using #fastAccesses on the famix entity representing this parameter, the result includes the parameter declaration int x. It should not include the parameter declaration.