Files
openide/plugins/java-i18n/testData/inspections/spellchecker/DoNotCheckDerivedNames.java
Peter Gromov 626dc6aa40 [java spellchecker] don't spellcheck overridden method names
GitOrigin-RevId: 5e30ecfa06fe2e1a172e1906c715e2494484cd0f
2022-11-24 10:32:21 +00:00

13 lines
324 B
Java

class Super {
void <TYPO descr="Typo: In word 'asdftypo'">asdftypo</TYPO>() {}
WithTyppoInName myWithTyppoInName = new WithTyppoInName();
}
class Sub extends Super {
void asdftypo() {}
}
class With<TYPO descr="Typo: In word 'Typpo'">Typpo</TYPO>InName {}
class InheritorOfWithTyppoInName extends WithTyppoInName {}