Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3302592d authored by Pranav Vashi's avatar Pranav Vashi Committed by Georg Veichtlbauer
Browse files

Dialer: Remove unused drawable



Change-Id: Idb68431f27d309dc3f5e96b429d05ef30b93b867
Signed-off-by: default avatarPranav Vashi <neobuddy89@gmail.com>
parent a16d46b0
Loading
Loading
Loading
Loading
+0 −14
Original line number Diff line number Diff line
<!--
  SPDX-FileCopyrightText: Material Design Authors / Google LLC
  SPDX-License-Identifier: Apache-2.0
-->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="960"
    android:viewportHeight="960"
    android:tint="?attr/colorControlNormal">
  <path
      android:fillColor="@android:color/white"
      android:pathData="M256,760L200,704L424,480L200,256L256,200L480,424L704,200L760,256L536,480L760,704L704,760L480,536L256,760Z"/>
</vector>
+0 −5
Original line number Diff line number Diff line
@@ -27,8 +27,6 @@ import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;

import androidx.core.content.res.ResourcesCompat;

import com.android.dialer.R;

public class RemoveView extends FrameLayout {
@@ -37,7 +35,6 @@ public class RemoveView extends FrameLayout {
  ImageView removeIcon;
  int unhighlightedColor;
  int highlightedColor;
  Drawable removeDrawable;

  public RemoveView(Context context) {
    super(context);
@@ -59,8 +56,6 @@ public class RemoveView extends FrameLayout {
    final Resources r = getResources();
    unhighlightedColor = r.getColor(android.R.color.white, getContext().getTheme());
    highlightedColor = r.getColor(R.color.remove_highlighted_text_color, getContext().getTheme());
    removeDrawable = ResourcesCompat.getDrawable(r, R.drawable.quantum_ic_clear_vd_theme_24,
            getContext().getTheme());
  }

  @Override