Revert "Use precompute executer"

This reverts commit fa43ffa082.
This commit is contained in:
M66B 2020-02-11 08:11:08 +01:00
parent ae51ac3873
commit 82b9ac8add
2 changed files with 2 additions and 8 deletions

View File

@ -244,8 +244,6 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
private static final ExecutorService executor =
Helper.getBackgroundExecutor(2, "differ");
private static final ExecutorService precompute =
Helper.getBackgroundExecutor(1, "precompute");
// https://github.com/newhouse/url-tracking-stripper
private static final List<String> PARANOID_QUERY = Collections.unmodifiableList(Arrays.asList(
@ -1813,7 +1811,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
return PrecomputedTextCompat.getTextFuture(
builder,
TextViewCompat.getTextMetricsParams(tvBody),
precompute)
executor)
.get();
} catch (Throwable ex) {
Log.w(ex);

View File

@ -159,7 +159,6 @@ import java.util.Locale;
import java.util.Map;
import java.util.Objects;
import java.util.Properties;
import java.util.concurrent.ExecutorService;
import java.util.regex.Pattern;
import javax.activation.DataHandler;
@ -252,9 +251,6 @@ public class FragmentCompose extends FragmentBase {
private long[] pgpKeyIds;
private long pgpSignKeyId;
private static final ExecutorService precompute =
Helper.getBackgroundExecutor(1, "precompute");
static final int REDUCED_IMAGE_SIZE = 1440; // pixels
static final int REDUCED_IMAGE_QUALITY = 90; // percent
@ -4106,7 +4102,7 @@ public class FragmentCompose extends FragmentBase {
precomputed = PrecomputedTextCompat.getTextFuture(
spannedRef,
TextViewCompat.getTextMetricsParams(tvReference),
precompute)
null)
.get();
} catch (Throwable ex) {
Log.w(ex);