From f2297fcfc3b72765cb166c111f0897c26f500e16 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Thu, 6 Apr 2017 10:08:10 -0700 Subject: [PATCH] =?UTF-8?q?Remote=20the=20=E2=80=9Cupdate=E2=80=9D=20task.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We already have —update. --- src/main/kotlin/com/beust/kobalt/plugin/KobaltPlugin.kt | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/main/kotlin/com/beust/kobalt/plugin/KobaltPlugin.kt b/src/main/kotlin/com/beust/kobalt/plugin/KobaltPlugin.kt index d8248b75..eb3f7314 100644 --- a/src/main/kotlin/com/beust/kobalt/plugin/KobaltPlugin.kt +++ b/src/main/kotlin/com/beust/kobalt/plugin/KobaltPlugin.kt @@ -27,11 +27,4 @@ class KobaltPlugin @Inject constructor(val checkVersions: CheckVersions, val upd checkVersions.run(project) return TaskResult() } - - @Task(name = "update", description = "Update Kobalt to the latest version") - fun taskUpdate(project: Project) : TaskResult { - updateKobalt.updateKobalt() - return TaskResult() - } - }