Skip to content

Commit

Permalink
Android: VNCConn: make final what final can be
Browse files Browse the repository at this point in the history
  • Loading branch information
bk138 committed Aug 15, 2023
1 parent 0e7dba7 commit 2d64131
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ public interface OnAuthEventListener {
private boolean maintainConnection = true;
private boolean framebufferUpdatesEnabled = true;

private Lock bitmapDataPixelsLock = new ReentrantLock();
private final Lock bitmapDataPixelsLock = new ReentrantLock();

// message queue for communicating with the output worker thread
private ConcurrentLinkedQueue<OutputEvent> outputEventQueue = new ConcurrentLinkedQueue<VNCConn.OutputEvent>();
private final ConcurrentLinkedQueue<OutputEvent> outputEventQueue = new ConcurrentLinkedQueue<>();

private COLORMODEL colorModel;

Expand Down

0 comments on commit 2d64131

Please sign in to comment.