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;
|
import java.util.List;
|
||||||
|
|
||||||
public class CodecOption {
|
public class CodecOption {
|
||||||
private String key;
|
private final String key;
|
||||||
private Object value;
|
private final Object value;
|
||||||
|
|
||||||
public CodecOption(String key, Object value) {
|
public CodecOption(String key, Object value) {
|
||||||
this.key = key;
|
this.key = key;
|
||||||
|
|
|
@ -3,8 +3,8 @@ package com.genymobile.scrcpy;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
public class Position {
|
public class Position {
|
||||||
private Point point;
|
private final Point point;
|
||||||
private Size screenSize;
|
private final Size screenSize;
|
||||||
|
|
||||||
public Position(Point point, Size screenSize) {
|
public Position(Point point, Size screenSize) {
|
||||||
this.point = point;
|
this.point = point;
|
||||||
|
|
Loading…
Reference in a new issue