This commit is contained in:
tonikelope 2016-09-30 20:42:54 +02:00
parent 75d621bd20
commit 96af814804
2 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ import static megabasterd.Transference.MAX_TRANSFERENCE_SPEED_DEFAULT;
*/
public final class MainPanel {
public static final String VERSION="1.2";
public static final String VERSION="1.3";
public static final String USER_AGENT="Mozilla/5.0 (X11; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0";
public static final int CONNECTION_TIMEOUT = 30000;
public static final int THROTTLE_SLICE_SIZE=16*1024;

View File

@ -48,8 +48,8 @@ abstract public class TransferenceManager implements Runnable, SecureNotifiable
return _starting_transferences;
}
public void setStarting_transferences(boolean starting_transferences) {
_starting_transferences = starting_transferences;
public void setStarting_transferences(boolean starting) {
_starting_transferences = starting;
}
public TransferenceManager(MainPanel main_panel, javax.swing.JPanel scroll_panel) {