Skip to content
Snippets Groups Projects
Commit e032f465 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Cleanup code

parent c22be88a
No related branches found
No related tags found
No related merge requests found
...@@ -23,14 +23,14 @@ public class TouchPadViewController extends AbstractPadViewController implements ...@@ -23,14 +23,14 @@ public class TouchPadViewController extends AbstractPadViewController implements
protected static final String CURRENT_PAGE_BUTTON = "current-page-button"; protected static final String CURRENT_PAGE_BUTTON = "current-page-button";
private static final String DURATION_FORMAT = "%d:%02d"; private static final String DURATION_FORMAT = "%d:%02d";
private TouchPadView padView; private final TouchPadView padView;
private Pad pad; private Pad pad;
private PadLockedListener padLockedListener; private final PadLockedListener padLockedListener;
private PadStatusListener padStatusListener; private final PadStatusListener padStatusListener;
private PadContentListener padContentListener; private final PadContentListener padContentListener;
private PadDurationListener padDurationListener; private final PadDurationListener padDurationListener;
private IPadPositionListener padPositionListener; private final IPadPositionListener padPositionListener;
TouchPadViewController(TouchPadView padView) { TouchPadViewController(TouchPadView padView) {
this.padView = padView; this.padView = padView;
......
...@@ -10,7 +10,7 @@ import javafx.beans.value.ObservableValue; ...@@ -10,7 +10,7 @@ import javafx.beans.value.ObservableValue;
public class PadStatusListener implements ChangeListener<PadStatus> { public class PadStatusListener implements ChangeListener<PadStatus> {
private AbstractPadViewController controller; private final AbstractPadViewController controller;
public PadStatusListener(AbstractPadViewController controller) { public PadStatusListener(AbstractPadViewController controller) {
this.controller = controller; this.controller = controller;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment