Skip to content

Commit

Permalink
FIX remove invalid javadocs chars
Browse files Browse the repository at this point in the history
  • Loading branch information
sanguine6660 committed Dec 13, 2023
1 parent 984c5fd commit 03cba11
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
* message-format; com.izanagicraft.messages.translations:GlobalTranslations
* <p>
* Utility class for handling translations with placeholders.
* </p>
* <p>
* Example usage:
* <pre>
Expand All @@ -40,11 +39,9 @@
* String translatedText = GlobalTranslations.translate("greeting", "John");
* }
* </pre>
* </p>
* <p>
* This class provides static methods to interact with the TranslationHandler,
* which manages translations for different locales with support for placeholders.
* </p>
*
* @author <a href="https://github.com/sanguine6660">@sanguine6660</a>
* @since 13.12.2023
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
* <p>
* The {@code TranslationHandler} class provides methods to manage translations
* for different locales with support for placeholders.
* </p>
* <p>
* Example usage:
* <pre>
Expand All @@ -48,15 +47,12 @@
* String translatedText = translations.translate("greeting", "John");
* }
* </pre>
* </p>
* <p>
* Note: The class follows the singleton pattern, and instances should
* be created using the provided constructors or by calling the {@code init} method.
* </p>
* <p>
* This class is not meant to be instantiated directly; instead, use the provided
* constructors or the {@code init} method to initialize the translations.
* </p>
*
* @author <a href="https://github.com/LuciferMorningstarDev">LuciferMorningstarDev</a>
* @since 13.12.2023
Expand All @@ -80,7 +76,6 @@ public class TranslationHandler {
* <p>
* Creates an instance of the Translations class without initializing translations.
* To initialize translations, use the {@code init} method.
* </p>
*/
public TranslationHandler() {
// Empty constructor
Expand All @@ -91,7 +86,6 @@ public TranslationHandler() {
* <p>
* Creates an instance of the Translations class and initializes translations
* using the provided language properties files.
* </p>
*
* @param files Language properties files to load.
*/
Expand All @@ -105,7 +99,6 @@ public TranslationHandler(File... files) {
* <p>
* Creates an instance of the Translations class and initializes translations
* using the provided default replacements and language properties files.
* </p>
*
* @param defaultReplacements Default replacement map for placeholders.
* @param files Language properties files to load.
Expand Down

0 comments on commit 03cba11

Please sign in to comment.