Let's dance baby2

This commit is contained in:
tonikelope 2016-09-29 19:03:23 +02:00
parent 3b3d1e8178
commit 2964ebb8e5
2 changed files with 4 additions and 2 deletions

View File

@ -14,11 +14,12 @@ public final class SpeedMeter implements Runnable, SecureNotifiable
private volatile long _lastSpeed;
private volatile boolean _exit;
private final Object _secure_notify_lock;
private boolean _notified=false;
private boolean _notified;
SpeedMeter(Transference transference, GlobalSpeedMeter gspeed)
{
this._notified = false;
_secure_notify_lock = new Object();
_transference = transference;
_progress = transference.getProgress();

View File

@ -22,9 +22,10 @@ abstract public class TransferenceManager implements Runnable, SecureNotifiable
private final javax.swing.JPanel _scroll_panel;
private final MainPanel _main_panel;
private final Object _secure_notify_lock;
private boolean _notified=false;
private boolean _notified;
public TransferenceManager(MainPanel main_panel, javax.swing.JPanel scroll_panel) {
this._notified = false;
_main_panel = main_panel;
_scroll_panel = scroll_panel;