Skip to content

Commit

Permalink
fix kebab-case's
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Aug 6, 2024
1 parent f52eb98 commit b414cd5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ abstract class MappingsConfig<T: MappingResolver<T>>(val project: Project, val m

@JvmOverloads
fun legacyIntermediary(
key: String = "legacy-intermediary",
key: String = "legacyIntermediary",
@DelegatesTo(value = MappingEntry::class, strategy = Closure.DELEGATE_FIRST)
action: Closure<*>
) {
Expand All @@ -101,7 +101,7 @@ abstract class MappingsConfig<T: MappingResolver<T>>(val project: Project, val m

@JvmOverloads
fun babricIntermediary(
key: String = "intermediary",
key: String = "babricIntermediary",
@DelegatesTo(value = MappingEntry::class, strategy = Closure.DELEGATE_FIRST)
action: Closure<*>
) {
Expand Down Expand Up @@ -289,7 +289,7 @@ abstract class MappingsConfig<T: MappingResolver<T>>(val project: Project, val m
@JvmOverloads
fun legacyYarn(
build: Int,
key: String = "legacy-yarn",
key: String = "legacyYarn",
@DelegatesTo(value = MappingEntry::class, strategy = Closure.DELEGATE_FIRST)
action: Closure<*>
) {
Expand Down

0 comments on commit b414cd5

Please sign in to comment.