File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed
java/src/org/openqa/selenium Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -46,46 +46,14 @@ public int getY() {
46
46
return y ;
47
47
}
48
48
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
-
65
49
public int getHeight () {
66
50
return height ;
67
51
}
68
52
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
-
77
53
public int getWidth () {
78
54
return width ;
79
55
}
80
56
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
-
89
57
public Point getPoint () {
90
58
return new Point (x , y );
91
59
}
You can’t perform that action at this time.
0 commit comments