From ea8f4b854b710092599f5aa805625355f8c2174e Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Sun, 29 Aug 2021 10:36:34 -0400 Subject: [PATCH] Formatting fixes in the FireworkColor class --- .../geysermc/connector/utils/FireworkColor.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/connector/src/main/java/org/geysermc/connector/utils/FireworkColor.java b/connector/src/main/java/org/geysermc/connector/utils/FireworkColor.java index 9a20295e5c5..5a4f0ae0bee 100644 --- a/connector/src/main/java/org/geysermc/connector/utils/FireworkColor.java +++ b/connector/src/main/java/org/geysermc/connector/utils/FireworkColor.java @@ -69,13 +69,13 @@ public static byte fromJavaRGB(int rgbValue) { // The following two methods were adapted from the Adventure project: // https://github.com/KyoriPowered/adventure/blob/09edf74409feb52d9147a5a811910de0721acf95/api/src/main/java/net/kyori/adventure/text/format/NamedTextColor.java#L193-L237 /** - * Find the named colour nearest to the provided colour. + * Find the firework color nearest to the provided color. * - * @param any colour to match - * @return nearest named colour. will always return a value + * @param any color to match + * @return nearest named color. will always return a value * @since 4.0.0 */ - public static FireworkColor nearestTo(final HSVLike any) { + private static FireworkColor nearestTo(final HSVLike any) { float matchedDistance = Float.MAX_VALUE; FireworkColor match = VALUES[0]; for (final FireworkColor potential : VALUES) { @@ -92,11 +92,11 @@ public static FireworkColor nearestTo(final HSVLike any) { } /** - * Returns a distance metric to the other colour. + * Returns a distance metric to the other color. * - *

This value is unitless and should only be used to compare with other text colours.

+ *

This value is unitless and should only be used to compare with other firework colors.

* - * @param other colour to compare to + * @param other color to compare to * @return distance metric */ private static float distance(final HSVLike self, final HSVLike other) {