To repro: run the generator with instance variables and private entities enabled (at minimum) using the following input:
public class Demo {
private int var1, var2, var3;
public Demo() {
var1 = 0;
var2 = 1;
var3 = 2;
}
}
Expected: all three var1, var2, and var3 are displayed.
Actual: only var3 is displayed