reformatting var declarations

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2019-04-10 16:15:55 +02:00
parent d41a8a9054
commit a05ba1a54f
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -51,26 +51,21 @@ import lombok.Getter;
* Remote DownloadOperation performing the download of a file to an ownCloud server
*/
public class DownloadFileOperation extends RemoteOperation {
private static final String TAG = DownloadFileOperation.class.getSimpleName();
@Getter
private Account account;
@Getter
private OCFile file;
@Getter
private String behaviour;
@Getter private Account account;
@Getter private OCFile file;
@Getter private String behaviour;
@Getter private String etag = "";
@Getter private String activityName;
@Getter private String packageName;
private Context context;
private Set<OnDatatransferProgressListener> dataTransferListeners = new HashSet<>();
private long modificationTimestamp;
@Getter
private String etag = "";
private final AtomicBoolean cancellationRequested = new AtomicBoolean(false);
private DownloadFileRemoteOperation downloadOperation;
@Getter
private String activityName;
@Getter
private String packageName;
private final AtomicBoolean cancellationRequested = new AtomicBoolean(false);
public DownloadFileOperation(Account account, OCFile file, String behaviour, String activityName,
String packageName, Context context) {