From fe8817960b538be398dc0c31cc136b1f45998c85 Mon Sep 17 00:00:00 2001 From: Seigo Nonaka Date: Mon, 21 Sep 2020 22:57:39 -0700 Subject: [PATCH] Remove Unique ID which is not used anywhere. Bug: N/A Test: minikin_tests Change-Id: Ic6f3d4ab8af52672cb759720cefd9429933711a7 --- libs/hwui/hwui/MinikinSkia.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libs/hwui/hwui/MinikinSkia.cpp b/libs/hwui/hwui/MinikinSkia.cpp index a6137b073d5a9..0e338f35b8e74 100644 --- a/libs/hwui/hwui/MinikinSkia.cpp +++ b/libs/hwui/hwui/MinikinSkia.cpp @@ -33,8 +33,7 @@ namespace android { MinikinFontSkia::MinikinFontSkia(sk_sp typeface, const void* fontData, size_t fontSize, std::string_view filePath, int ttcIndex, const std::vector& axes) - : minikin::MinikinFont(typeface->uniqueID()) - , mTypeface(std::move(typeface)) + : mTypeface(std::move(typeface)) , mFontData(fontData) , mFontSize(fontSize) , mTtcIndex(ttcIndex)