diff --git a/src/main/kotlin/net/moonleay/lilJudd/util/ButtonUtil.kt b/src/main/kotlin/net/moonleay/lilJudd/util/ButtonUtil.kt index 63d1703..5abda22 100644 --- a/src/main/kotlin/net/moonleay/lilJudd/util/ButtonUtil.kt +++ b/src/main/kotlin/net/moonleay/lilJudd/util/ButtonUtil.kt @@ -38,14 +38,6 @@ object ButtonUtil { return ar } - /** - * @param x The string to replace - * @param y The string to replace with - * @param e The embed to replace the string in - * @param table The table to replace the string in - * @param maxTableSize The max table size - * @return The embed with the replaced string - */ fun replaceXWithYinValuesAtTable(x: String, y: String, e: Embed, table: Int): EmbedBuilder { val ebb = MessageUtil.getAClonedEmbedd(e) for ((i, f) in e.fields.withIndex()) { @@ -65,13 +57,6 @@ object ButtonUtil { return ebb } - /** - * @param x The string to add - * @param e The embed to add the string to - * @param table The table to add the string to - * @param maxTableSize The max table size - * @return The embed with the added string - */ fun addXToValuesAtTable(x: String, e: Embed, table: Int): EmbedBuilder { val ebb = MessageUtil.getAClonedEmbedd(e) for ((i, f) in e.fields.withIndex()) {