Példa
public class
ClassA {
static final void
testMethod () {
}
}
Megoldás
Távolítsa el a
final
bejegyzést a metódus deklarációból.
public class
ClassA {
static void
testMethod () {
}
}