public class CodeDup {
protected AtomicInteger var;
protected void method() {
var.intValue();
}
}
class c2 extends CodeDup {
void m() {
var.intValue();
} }
}
code duplicate is located but why does this weird 'will be made static' dialog appears?
PS: where is my cookie for testing 'code duplicates' feature?