Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
Make protected package-private
Browse files Browse the repository at this point in the history
  • Loading branch information
se-bastiaan committed Dec 24, 2018
1 parent 14af6e2 commit e898725
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class StreamStatus {
public final int seeds;
public final float downloadSpeed;

protected StreamStatus(float progress, int bufferProgress, int seeds, int downloadSpeed) {
StreamStatus(float progress, int bufferProgress, int seeds, int downloadSpeed) {
this.progress = progress;
this.bufferProgress = bufferProgress;
this.seeds = seeds;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@

public final class TorrentOptions {

protected String saveLocation = "/";
protected String proxyHost;
protected String proxyUsername;
protected String proxyPassword;
protected String peerFingerprint;
protected Integer maxDownloadSpeed = 0;
protected Integer maxUploadSpeed = 0;
protected Integer maxConnections = 200;
protected Integer maxDht = 88;
protected Integer listeningPort = -1;
protected Boolean removeFiles = false;
protected Boolean anonymousMode = false;
protected Boolean autoDownload = true;
protected Long prepareSize = 15 * 1024L * 1024L;
String saveLocation = "/";
String proxyHost;
String proxyUsername;
String proxyPassword;
String peerFingerprint;
Integer maxDownloadSpeed = 0;
Integer maxUploadSpeed = 0;
Integer maxConnections = 200;
Integer maxDht = 88;
Integer listeningPort = -1;
Boolean removeFiles = false;
Boolean anonymousMode = false;
Boolean autoDownload = true;
Long prepareSize = 15 * 1024L * 1024L;

private TorrentOptions() {
// Unused
Expand Down

0 comments on commit e898725

Please sign in to comment.