Skip to content

Commit

Permalink
0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Mar 29, 2024
1 parent 98ecf83 commit 1253a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "xyz.jpenilla"
version = "0.0.9-SNAPSHOT"
version = "0.0.9"
description = "Gradle plugin for generating resources at build time"

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ open class FabricModJson constructor(
@get:Input
abstract val extra: MapProperty<String, String>

fun asMap(): HashMap<String, String>? {
fun asMap(): Map<String, String>? {
val map = hashMapOf<String, String>()
email.takeIf { it.isPresent }?.let { map["email"] = it.get() }
irc.takeIf { it.isPresent }?.let { map["irc"] = it.get() }
Expand Down

0 comments on commit 1253a34

Please sign in to comment.