diff options
author | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-07 12:12:06 +0300 |
---|---|---|
committer | Sergey Mashkov <sergey.mashkov@jetbrains.com> | 2015-08-07 12:12:06 +0300 |
commit | d1ff5949b5807b57eab6010175b3c6f1e7c1945c (patch) | |
tree | 1ea12749f8c8d3f1242f26163003a1471d64f904 /src/Utilities | |
parent | 97bea8c614bfea408c845f07ddc42c29db1e81ba (diff) | |
download | dokka-d1ff5949b5807b57eab6010175b3c6f1e7c1945c.tar.gz dokka-d1ff5949b5807b57eab6010175b3c6f1e7c1945c.tar.bz2 dokka-d1ff5949b5807b57eab6010175b3c6f1e7c1945c.zip |
~ minor cleanup
Diffstat (limited to 'src/Utilities')
-rw-r--r-- | src/Utilities/ServiceLocator.kt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Utilities/ServiceLocator.kt b/src/Utilities/ServiceLocator.kt index e2ed0499..b3610a53 100644 --- a/src/Utilities/ServiceLocator.kt +++ b/src/Utilities/ServiceLocator.kt @@ -89,12 +89,6 @@ public inline fun <reified T : Any> ServiceLocator.lookupOrNull(category: String null } -fun main(args: Array<String>) { - ServiceLocator.allServices("format").forEach { - println(it) - } -} - private val ZipEntry.fileName: String get() = name.substringAfterLast("/", name) |