Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
powercasgamer committed Dec 2, 2023
1 parent b2b0e41 commit cdd5d9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions build-logic/src/main/kotlin/gremlin-stuff.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ tasks.writeDependencies {
repos.add("https://repo.papermc.io/repository/maven-public/")
repos.add("https://repo.maven.apache.org/maven2/")
repos.add("https://maven.mizule.dev/")
repos.add("https://maven.reposilite.com/snapshots/")
repos.add("https://maven.reposilite.com/releases/")
}

gremlin {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ data class Config(
"example" to PermissionThing(
"test.permission",
listOf("say example"),
Target.USER
Target.USER,
),
),

Expand All @@ -59,11 +59,11 @@ data class PermissionThing(

@Comment(
"Available options are:\n" +
"USER - If this should be called for Users only\n" +
"GROUP - If this should be called for Groups only\n" +
"ALL - If this should be called for Users and Groups"
"USER - If this should be called for Users only\n" +
"GROUP - If this should be called for Groups only\n" +
"ALL - If this should be called for Users and Groups",
)
val target: Target
val target: Target,
)

enum class Target {
Expand Down

0 comments on commit cdd5d9c

Please sign in to comment.