mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-10 01:16:23 +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;
|
import java.io.IOException;
|
||||||
|
|
||||||
public abstract class RemoteOperation<T extends Object> implements Runnable {
|
public abstract class RemoteOperation<T> implements Runnable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* OCS API header name
|
* OCS API header name
|
||||||
|
@ -52,7 +52,7 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
public class RemoteOperationResult<T extends Object>
|
public class RemoteOperationResult<T>
|
||||||
implements Serializable {
|
implements Serializable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -70,6 +70,7 @@ public class RemoteOperationResult<T extends Object>
|
|||||||
private ArrayList<String> mAuthenticate = new ArrayList<>();
|
private ArrayList<String> mAuthenticate = new ArrayList<>();
|
||||||
private String mLastPermanentLocation = null;
|
private String mLastPermanentLocation = null;
|
||||||
private T mData = null;
|
private T mData = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Public constructor from result code.
|
* Public constructor from result code.
|
||||||
* <p>
|
* <p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user