aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/foundation/e/privacycentralapp/extensions
diff options
context:
space:
mode:
authorGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2022-02-24 07:46:23 +0000
committerGuillaume Jacquart <guillaume.jacquart@hoodbrains.com>2022-02-24 07:46:23 +0000
commit650a067529cdf65cc9a9130c91511adfb4b64c98 (patch)
tree97446224925c34be4ed09e6d0ce679275f698726 /app/src/main/java/foundation/e/privacycentralapp/extensions
parent6abf3b8bbcec463dcea8acbba63872d587ff2779 (diff)
downloadadvanced-privacy-650a067529cdf65cc9a9130c91511adfb4b64c98.tar.gz
Access trackers list when QP disabled: #4591, #4596, #4601
Diffstat (limited to 'app/src/main/java/foundation/e/privacycentralapp/extensions')
-rw-r--r--app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt b/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt
new file mode 100644
index 0000000..a870d33
--- /dev/null
+++ b/app/src/main/java/foundation/e/privacycentralapp/extensions/AnyExtension.kt
@@ -0,0 +1,26 @@
+/*
+ * Copyright (C) 2022 E FOUNDATION
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+package foundation.e.privacycentralapp.extensions
+
+import android.content.Context
+
+fun Any.toText(context: Context) = when (this) {
+ is Int -> context.getString(this)
+ is String -> this
+ else -> this.toString()
+}