deprecated method removed

pull/2954/head
Nikita Koksharov 5 years ago
parent 4aaf40ea88
commit fb73d9b6b1

@ -643,11 +643,6 @@ public class RedissonLiveObjectService implements RLiveObjectService {
return (RLiveObject) instance;
}
@Override
public <T> RExpirable asRExpirable(T instance) {
return (RExpirable) instance;
}
@Override
public <T, K, V> RMap<K, V> asRMap(T instance) {
return (RMap) instance;

@ -202,13 +202,6 @@ public interface RLiveObjectService {
*/
<T> RLiveObject asLiveObject(T instance);
/**
* Use {@link #asRMap(Object)} method instead
*
*/
@Deprecated
<T> RExpirable asRExpirable(T instance);
/**
* To cast the instance to RMap instance.
*

Loading…
Cancel
Save