aboutsummaryrefslogtreecommitdiff
path: root/ant/src
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2015-10-22 19:18:07 +0300
committerIlya Ryzhenkov <orangy@jetbrains.com>2015-10-22 19:18:07 +0300
commita76e5a6f50302382fa53608ff79de3dd1926d84c (patch)
tree2f21c587bf6938c72db92d019c984602f1ba795e /ant/src
parent1e2e2b6a4223c7e09bf447f645b0843128fed7b5 (diff)
downloaddokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.tar.gz
dokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.tar.bz2
dokka-a76e5a6f50302382fa53608ff79de3dd1926d84c.zip
Update to changes in Kotlin Beta.
Diffstat (limited to 'ant/src')
-rw-r--r--ant/src/dokka.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ant/src/dokka.kt b/ant/src/dokka.kt
index 6538f083..d78980f8 100644
--- a/ant/src/dokka.kt
+++ b/ant/src/dokka.kt
@@ -67,7 +67,7 @@ class DokkaAntTask(): Task() {
}
override fun execute() {
- if (sourcePath.list().size() == 0) {
+ if (sourcePath.list().size == 0) {
throw BuildException("At least one source path needs to be specified")
}
if (moduleName == null) {