From ff4f4a1c2cbedddb0149c59cd4a65445b72bb3b7 Mon Sep 17 00:00:00 2001 From: m2049r Date: Mon, 21 Sep 2020 14:35:50 +0200 Subject: [PATCH] remove notices covered by onboarding (#681) --- .../java/com/m2049r/xmrwallet/util/Notice.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/app/src/main/java/com/m2049r/xmrwallet/util/Notice.java b/app/src/main/java/com/m2049r/xmrwallet/util/Notice.java index 8985fba..ff9801f 100644 --- a/app/src/main/java/com/m2049r/xmrwallet/util/Notice.java +++ b/app/src/main/java/com/m2049r/xmrwallet/util/Notice.java @@ -37,33 +37,19 @@ public class Notice { private static final String PREFS_NAME = "notice"; private static List notices = null; - private static final String NOTICE_SHOW_XMRTO_ENABLED_LOGIN = "notice_xmrto_enabled_login"; private static final String NOTICE_SHOW_XMRTO_ENABLED_SEND = "notice_xmrto_enabled_send"; private static final String NOTICE_SHOW_LEDGER = "notice_ledger_enabled_login"; - private static final String NOTICE_SHOW_NODES = "notice_nodes"; private static void init() { synchronized (Notice.class) { if (notices != null) return; notices = new ArrayList<>(); - notices.add( - new Notice(NOTICE_SHOW_NODES, - R.string.info_nodes_enabled, - R.string.help_node, - 1) - ); notices.add( new Notice(NOTICE_SHOW_XMRTO_ENABLED_SEND, R.string.info_xmrto_enabled, R.string.help_xmrto, 1) ); - notices.add( - new Notice(NOTICE_SHOW_XMRTO_ENABLED_LOGIN, - R.string.info_xmrto_enabled, - R.string.help_xmrto, - 1) - ); notices.add( new Notice(NOTICE_SHOW_LEDGER, R.string.info_ledger_enabled,