Files
openide/java/java-tests/testData/refactoring/inplaceIntroduceVariable/conflictWithField_after.java
T

13 lines
279 B
Java

import javax.swing.*;
import java.awt.*;
class OuterClass {
private MyComp myComp;
private class MyComp extends JPanel {
@Override
public void paint(Graphics g) {
int height = myComp.getHeight();
int a = height;
}
}
}