1
0
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:
davigonz 2019-07-08 12:24:14 +02:00
parent 5981dfab96
commit ea34453f0a
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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>
@ -583,4 +584,4 @@ public class RemoteOperationResult<T extends Object>
SPECIFIC_UNSUPPORTED_MEDIA_TYPE, SPECIFIC_UNSUPPORTED_MEDIA_TYPE,
SPECIFIC_METHOD_NOT_ALLOWED SPECIFIC_METHOD_NOT_ALLOWED
} }
} }