Skip to content

Commit

Permalink
add missing final
Browse files Browse the repository at this point in the history
  • Loading branch information
segrey committed Aug 17, 2023
1 parent 9e8cd0e commit b154fb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/com/jediterm/terminal/ui/TerminalPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public class TerminalPanel extends JComponent implements TerminalDisplay, Termin
private String myInputMethodUncommittedChars;

private Timer myRepaintTimer;
private AtomicInteger scrollDy = new AtomicInteger(0);
private final AtomicInteger scrollDy = new AtomicInteger(0);
private final AtomicBoolean myHistoryBufferLineCountChanged = new AtomicBoolean(false);
private AtomicBoolean needRepaint = new AtomicBoolean(true);
private final AtomicBoolean needRepaint = new AtomicBoolean(true);

private int myMaxFPS = 50;
private int myBlinkingPeriod = 500;
Expand Down

0 comments on commit b154fb9

Please sign in to comment.