mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-09 17:06:18 +00:00
Delete unneeded extend
This commit is contained in:
parent
5981dfab96
commit
ea34453f0a
@ -16,7 +16,7 @@ import okhttp3.OkHttpClient;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public abstract class RemoteOperation<T extends Object> implements Runnable {
|
||||
public abstract class RemoteOperation<T> implements Runnable {
|
||||
|
||||
/**
|
||||
* OCS API header name
|
||||
|
@ -52,7 +52,7 @@ import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class RemoteOperationResult<T extends Object>
|
||||
public class RemoteOperationResult<T>
|
||||
implements Serializable {
|
||||
|
||||
/**
|
||||
@ -70,6 +70,7 @@ public class RemoteOperationResult<T extends Object>
|
||||
private ArrayList<String> mAuthenticate = new ArrayList<>();
|
||||
private String mLastPermanentLocation = null;
|
||||
private T mData = null;
|
||||
|
||||
/**
|
||||
* Public constructor from result code.
|
||||
* <p>
|
||||
@ -583,4 +584,4 @@ public class RemoteOperationResult<T extends Object>
|
||||
SPECIFIC_UNSUPPORTED_MEDIA_TYPE,
|
||||
SPECIFIC_METHOD_NOT_ALLOWED
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user