Skip to content

Commit

Permalink
feat: remove lombok
Browse files Browse the repository at this point in the history
  • Loading branch information
qixils committed Jan 2, 2025
1 parent 41103d8 commit 1482598
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
plugins {
`java-library`
`maven-publish`
id("io.freefair.lombok") version "8.11"
kotlin("jvm")
}

Expand Down
1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ net-xyzsd-plurals-cldr-plural-rules = "41"
org-jetbrains-annotations = "24.1.0"
org-junit-jupiter-junit-jupiter = "5.11.0-M2"
org-mongodb-mongodb-driver-reactivestreams = "5.1.1"
org-projectlombok-lombok = "1.18.34"
org-reflections-reflections = "0.10.2"
org-slf4j-slf4j-api = "2.0.13"
org-spongepowered-configurate-yaml = "4.1.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ import dev.qixils.quasicord.Quasicord
import dev.qixils.quasicord.converter.Converter
import dev.qixils.quasicord.db.collection.TimeZoneConfig
import dev.qixils.quasicord.error.UserError
import lombok.Getter
import net.dv8tion.jda.api.interactions.Interaction
import java.time.ZoneOffset
import java.time.ZonedDateTime
import java.util.regex.Matcher
import java.util.regex.Pattern

@Getter
class ZonedDateTimeConverter(private val library: Quasicord) : Converter<String, ZonedDateTime> {
override val inputClass: Class<String> = String::class.java
override val outputClass: Class<ZonedDateTime> = ZonedDateTime::class.java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
package dev.qixils.quasicord.text

import dev.qixils.quasicord.Key
import lombok.Getter
import net.xyzsd.plurals.PluralRuleType
import java.text.MessageFormat
import java.util.*
Expand All @@ -15,7 +14,6 @@ import kotlin.Throws
/**
* Localizable text that has plural forms.
*/
@Getter
class PluralLocalizableText internal constructor(
private val quantity: Long,
private val ruleType: PluralRuleType,
Expand Down

0 comments on commit 1482598

Please sign in to comment.