mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-09 17:06:18 +00:00
Decrease some lines length
This commit is contained in:
parent
274e0ec47b
commit
576231023b
@ -52,12 +52,14 @@ public class ChunkedUploadRemoteFileOperation extends UploadRemoteFileOperation
|
||||
private static final String OC_CHUNK_X_OC_MTIME_HEADER = "X-OC-Mtime";
|
||||
private static final String TAG = ChunkedUploadRemoteFileOperation.class.getSimpleName();
|
||||
|
||||
public ChunkedUploadRemoteFileOperation(String storagePath, String remotePath, String mimeType, String fileLastModifTimestamp){
|
||||
public ChunkedUploadRemoteFileOperation(String storagePath, String remotePath, String mimeType,
|
||||
String fileLastModifTimestamp){
|
||||
super(storagePath, remotePath, mimeType, fileLastModifTimestamp);
|
||||
}
|
||||
|
||||
public ChunkedUploadRemoteFileOperation(
|
||||
String storagePath, String remotePath, String mimeType, String requiredEtag, String fileLastModifTimestamp
|
||||
String storagePath, String remotePath, String mimeType, String requiredEtag,
|
||||
String fileLastModifTimestamp
|
||||
){
|
||||
super(storagePath, remotePath, mimeType, requiredEtag, fileLastModifTimestamp);
|
||||
}
|
||||
|
@ -77,14 +77,16 @@ public class UploadRemoteFileOperation extends RemoteOperation {
|
||||
|
||||
protected RequestEntity mEntity = null;
|
||||
|
||||
public UploadRemoteFileOperation(String localPath, String remotePath, String mimeType, String fileLastModifTimestamp) {
|
||||
public UploadRemoteFileOperation(String localPath, String remotePath, String mimeType,
|
||||
String fileLastModifTimestamp) {
|
||||
mLocalPath = localPath;
|
||||
mRemotePath = remotePath;
|
||||
mMimeType = mimeType;
|
||||
mFileLastModifTimestamp = fileLastModifTimestamp;
|
||||
}
|
||||
|
||||
public UploadRemoteFileOperation(String localPath, String remotePath, String mimeType, String requiredEtag, String fileLastModifTimestamp) {
|
||||
public UploadRemoteFileOperation(String localPath, String remotePath, String mimeType,
|
||||
String requiredEtag, String fileLastModifTimestamp) {
|
||||
this(localPath, remotePath, mimeType, fileLastModifTimestamp);
|
||||
mRequiredEtag = requiredEtag;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user