Skip to content

Commit

Permalink
🚨 : fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
juwit committed Feb 3, 2020
1 parent 7c20545 commit c1650fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/codeka/gaia/hcl/HclParserImpl.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ interface HclParser {
fun parseContent(content: String): HclVisitor
fun parseVariables(content: String): List<Variable>
fun parseOutputs(content: String): List<Output>
fun parseProvider(fileContent: String): String
fun parseProvider(content: String): String
}

@Service
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/codeka/gaia/modules/bo/TerraformImage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package io.codeka.gaia.modules.bo
import javax.validation.constraints.NotBlank
import javax.validation.constraints.Pattern

data class TerraformImage @JvmOverloads constructor(
data class TerraformImage constructor(
@field:NotBlank @field:Pattern(regexp = """^[\w][\w.\-\/]{0,127}$""") val repository: String,
@field:NotBlank val tag: String) {

Expand Down

0 comments on commit c1650fc

Please sign in to comment.