Fixed klinkCheck errors.

This commit is contained in:
Erik C. Thauvin 2018-07-02 23:51:45 -07:00
parent a112b73d53
commit 642066b7ea
2 changed files with 2 additions and 3 deletions

View file

@ -38,8 +38,8 @@ import javax.inject.Inject
open class SemverIncrementTask @Inject constructor(
private val config: SemverConfig,
private val version: Version,
private val type: String)
: DefaultTask() {
private val type: String
) : DefaultTask() {
init {
group = "version"
description = "Increments ${type.capitalize()} version number."

View file

@ -43,7 +43,6 @@ class SemverPlugin : Plugin<Project> {
private var version = Version()
private lateinit var config: SemverConfig
companion object {
fun saveProperties(config: SemverConfig, version: Version) {
Properties().apply {