Am I missing a new editor configuration feature or what?
But with the new r5.5 release the editor seems to have lost a smart feature where it took account of the ‘f’ prefix I use to demarcate all class data members.
Hence, previously if I had a class like….
public class myTest {
private int fNumber = 0;
}
… then the ‘source/generate getters/setters menu option would strip the ‘f’ from the equivalent method names to add methods like….
public int getNumber();
public void setNumber(int number);
With r5.5 this no longer appears to work. Now I’m getting methods that include the ‘f’ prefix, like…
public int getFNumber();
public void setFNumber(int number);
A bug?