Remove some unused classes.

Resolves signalapp/Signal-Android#14636
This commit is contained in:
Jesse Weinstein
2026-03-01 01:11:35 +00:00
committed by jeffrey-signal
parent 1a70449c4c
commit 30426ee42a
5 changed files with 0 additions and 153 deletions

View File

@@ -1,37 +0,0 @@
package org.thoughtcrime.securesms.util;
import androidx.lifecycle.MutableLiveData;
import org.signal.core.util.StreamUtil;
import java.io.Closeable;
/**
* Implementation of {@link androidx.lifecycle.LiveData} that will handle closing the contained
* {@link Closeable} when the value changes.
*/
public class CloseableLiveData<E extends Closeable> extends MutableLiveData<E> {
@Override
public void setValue(E value) {
setValue(value, true);
}
public void setValue(E value, boolean closePrevious) {
E previous = getValue();
if (previous != null && closePrevious) {
StreamUtil.close(previous);
}
super.setValue(value);
}
public void close() {
E value = getValue();
if (value != null) {
StreamUtil.close(value);
}
}
}