My problem is when I'm using ctrl+space on Netbeans my IDE generates my codes with 'ı' character like voıd
or publıc
and I have fix with my hand. When I'm coding in Java, when I want to generate getters and setters automatically, Netbeans generates these methods with Turkish characters (replaces the english i with 'ı'), such as voıd
or ınt
and publıc
. How can I fix that bug? Here is part of my trouble:
public ınt getAge() {
return age
}
publıc voıd setAge(ınt age) {
this.age = age;
}