From 0ad8dabba7c884cec8374e0826348b821980c23e Mon Sep 17 00:00:00 2001 From: tastybento Date: Mon, 4 Feb 2019 23:19:13 -0800 Subject: [PATCH] Added @since 1.3.0 tags --- src/main/java/world/bentobox/bentobox/api/user/User.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/world/bentobox/bentobox/api/user/User.java b/src/main/java/world/bentobox/bentobox/api/user/User.java index a955ffbcf..189346578 100644 --- a/src/main/java/world/bentobox/bentobox/api/user/User.java +++ b/src/main/java/world/bentobox/bentobox/api/user/User.java @@ -245,6 +245,7 @@ public class User { * @param variables - variables to insert into translated string. Variables go in pairs, for example * "[name]", "tastybento" * @return Translated string with colors converted, or the reference if nothing has been found + * @since 1.3.0 */ public String getTranslation(World world, String reference, String... variables) { // Get translation. @@ -343,6 +344,7 @@ public class User { * @param variables - CharSequence target, replacement pairs * * @see Notifier + * @since 1.3.0 */ public void notify(World world, String reference, String... variables) { String message = getTranslation(world, reference, variables);