Add missing final modifiers
This commit is contained in:
parent
b22810b17c
commit
8cbbcc939f
2 changed files with 4 additions and 4 deletions
|
@ -4,8 +4,8 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
|
||||
public class CodecOption {
|
||||
private String key;
|
||||
private Object value;
|
||||
private final String key;
|
||||
private final Object value;
|
||||
|
||||
public CodecOption(String key, Object value) {
|
||||
this.key = key;
|
||||
|
|
|
@ -3,8 +3,8 @@ package com.genymobile.scrcpy;
|
|||
import java.util.Objects;
|
||||
|
||||
public class Position {
|
||||
private Point point;
|
||||
private Size screenSize;
|
||||
private final Point point;
|
||||
private final Size screenSize;
|
||||
|
||||
public Position(Point point, Size screenSize) {
|
||||
this.point = point;
|
||||
|
|
Loading…
Reference in a new issue