mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 06:09:39 +00:00
Remove getter/Setter to access height/width directly.
This commit is contained in:
parent
96bafc27b1
commit
b09e13a9cf
1 changed files with 2 additions and 7 deletions
|
|
@ -27,13 +27,8 @@ public final class VideoSize {
|
|||
public static final int HVGA = 2;
|
||||
public static final int QVGA = 3;
|
||||
|
||||
private int width;
|
||||
public int getWidth() {return width;}
|
||||
public void setWidth(int width) {this.width = width;}
|
||||
|
||||
private int height;
|
||||
public int getHeight() {return height;}
|
||||
public void setHeight(int height) {this.height = height;}
|
||||
public int width;
|
||||
public int height;
|
||||
|
||||
public VideoSize() {}
|
||||
public VideoSize(int width, int height) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue