2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-08-30 13:58:08 +00:00

Add missing final modifiers

This commit is contained in:
Romain Vimont
2023-01-27 22:07:57 +01:00
parent b22810b17c
commit 8cbbcc939f
2 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;