vivekkoya / classfiles

Fields must not shadow other fields with the same name from super classes JAVA-W1007
Bug risk
Major
a year agoa year old
x shadows super type field Component.x
 20 */
 21class ShapeDisplayer extends JFrame implements ActionListener, MouseListener {
 22	private static final long serialVersionUID = -7036623560416033872L;
 23	private static int x, y; 24	static ShapeIcon si = null;
 25
 26	/**
y shadows super type field Component.y
 20 */
 21class ShapeDisplayer extends JFrame implements ActionListener, MouseListener {
 22	private static final long serialVersionUID = -7036623560416033872L;
 23	private static int x, y; 24	static ShapeIcon si = null;
 25
 26	/**