From 5d7adef13cf078bfb4d71f40fcfe320ee4e6db35 Mon Sep 17 00:00:00 2001 From: Brian Grant Date: Thu, 5 Apr 2018 12:35:22 -0700 Subject: [PATCH] [SUPP-268] Update javadocs string for the add_tags_action and remove_tags_action in UAWebviewClient (#370) * Update UAWebViewClient Javadocs Updates the examples for the "add_tags_action" to use the correct action name * Fix remove_tags_action example Also fixed the remove_tags_action --- .../java/com/urbanairship/widget/UAWebViewClient.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/urbanairship-sdk/src/main/java/com/urbanairship/widget/UAWebViewClient.java b/urbanairship-sdk/src/main/java/com/urbanairship/widget/UAWebViewClient.java index 777e852f6..9274cd8a2 100644 --- a/urbanairship-sdk/src/main/java/com/urbanairship/widget/UAWebViewClient.java +++ b/urbanairship-sdk/src/main/java/com/urbanairship/widget/UAWebViewClient.java @@ -68,8 +68,8 @@ *

*

*

- * Example: uairship://run-actions?&add_tags=%5B%22one%22%2C%22two%22%5D - * will run the "add_tags" with value "["one", "two"]". + * Example: uairship://run-actions?&add_tags_action=%5B%22one%22%2C%22two%22%5D + * will run the "add_tags_action" with value "["one", "two"]". *

*

*

@@ -78,8 +78,8 @@ *

*

*

- * Example: uairship://run-basic-actions?add_tags=one&remove_tags=two will run - * the "add_tags" with the value "one", and perform the "remove_tags" action with + * Example: uairship://run-basic-actions?add_tags_action=one&remove_tags_action=two will run + * the "add_tags_action" with the value "one", and perform the "remove_tags_action" action with * value "two". *

*