File tree Expand file tree Collapse file tree
java/src/org/openqa/selenium Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,46 +46,14 @@ public int getY() {
4646 return y ;
4747 }
4848
49- /**
50- * @deprecated Rectangle objects are supposed to be immutable, all setters will be removed soon
51- */
52- @ Deprecated
53- public void setX (int x ) {
54- this .x = x ;
55- }
56-
57- /**
58- * @deprecated Rectangle objects are supposed to be immutable, all setters will be removed soon
59- */
60- @ Deprecated
61- public void setY (int y ) {
62- this .y = y ;
63- }
64-
6549 public int getHeight () {
6650 return height ;
6751 }
6852
69- /**
70- * @deprecated Rectangle objects are supposed to be immutable, all setters will be removed soon
71- */
72- @ Deprecated
73- public void setHeight (int height ) {
74- this .height = height ;
75- }
76-
7753 public int getWidth () {
7854 return width ;
7955 }
8056
81- /**
82- * @deprecated Rectangle objects are supposed to be immutable, all setters will be removed soon
83- */
84- @ Deprecated
85- public void setWidth (int width ) {
86- this .width = width ;
87- }
88-
8957 public Point getPoint () {
9058 return new Point (x , y );
9159 }
You can’t perform that action at this time.
0 commit comments