mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-04-29 22:24:32 +02:00
Let's dance baby2
This commit is contained in:
parent
3b3d1e8178
commit
2964ebb8e5
@ -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();
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user