Skip to content

Commit e3038f6

Browse files
committed
Remove useless lazy delegates
1 parent 3e6886b commit e3038f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ val bintrayGpgSign by propertyOrElse(true)
4848
val bintrayRepo = "kotlin-metadata"
4949
val bintrayTags = arrayOf("Kotlin")
5050

51-
val bintrayUser: String? by lazy { System.getenv("BINTRAY_USER") }
52-
val bintrayKey: String? by lazy { System.getenv("BINTRAY_KEY") }
51+
val bintrayUser: String? = System.getenv("BINTRAY_USER")
52+
val bintrayKey: String? = System.getenv("BINTRAY_KEY")
5353

54-
val sonatypeUser: String? by lazy { System.getenv("SONATYPE_USER") }
55-
val sonatypePassword: String? by lazy { System.getenv("SONATYPE_PASSWORD") }
54+
val sonatypeUser: String? = System.getenv("SONATYPE_USER")
55+
val sonatypePassword: String? = System.getenv("SONATYPE_PASSWORD")
5656

5757
// set up external ant dependencies
5858
val updateDependencies by tasks.creating

0 commit comments

Comments
 (0)