From 849ccdeafe119ee30d5072ee50f47d0821eb96d6 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Mon, 10 Feb 2020 15:28:41 -0800 Subject: [PATCH] Remove String16 operator<<, now provided in header Bug: N/A Test: N/A Change-Id: Ic0418d81d37726dcfc100ce919b6f79be4077c8a --- libs/androidfw/tests/CommonHelpers.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/androidfw/tests/CommonHelpers.h b/libs/androidfw/tests/CommonHelpers.h index c160fbba4c018..8af13f20fb0dc 100644 --- a/libs/androidfw/tests/CommonHelpers.h +++ b/libs/androidfw/tests/CommonHelpers.h @@ -44,10 +44,6 @@ static inline ::std::ostream& operator<<(::std::ostream& out, const String8& str return out << str.string(); } -static inline ::std::ostream& operator<<(::std::ostream& out, const String16& str) { - return out << String8(str).string(); -} - static inline ::std::ostream& operator<<(::std::ostream& out, const ResTable_config& c) { return out << c.toString(); }