static fixes
This commit is contained in:
parent
95a8ceef0b
commit
3819f51962
|
|
@ -295,7 +295,7 @@ public class Storable<TKey, TObject, TStoreObject> {
|
|||
return internalSet(newValue, true).toObservable();
|
||||
}
|
||||
|
||||
public void setCalm(final TObject value) {
|
||||
public void setCalm(@Nullable final TObject value) {
|
||||
set(value).subscribe(Actions.empty(), Lc::assertion);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,8 +36,6 @@ import ru.touchin.roboswag.core.utils.ShouldNotHappenException;
|
|||
*/
|
||||
public class NonNullStorable<TKey, TObject, TStoreObject> extends Storable<TKey, TObject, TStoreObject> {
|
||||
|
||||
private boolean calm;
|
||||
|
||||
public NonNullStorable(@NonNull final NonNullStorableBuilder<TKey, TObject, TStoreObject> builderCore) {
|
||||
super(builderCore);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue