Skip to content

Commit

Permalink
chore: detekt: 불러온 apiKey는 notnull
Browse files Browse the repository at this point in the history
아니 가만히 냅둬도 String! 인데 왜 must not be null이여
  • Loading branch information
yangsooplus committed Jan 2, 2024
1 parent d4e1d00 commit af0a8f1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ dependencies {
implementation(libs.timber)
}

@Suppress
fun getApiKey(propertyKey: String): String {
return gradleLocalProperties(rootDir).getProperty(propertyKey)
return gradleLocalProperties(rootDir).getProperty(propertyKey)!!
}

0 comments on commit af0a8f1

Please sign in to comment.