diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2020-02-18 12:40:54 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-02-18 13:28:23 +0100 |
commit | f0d84fb8947ce4e5aa6796787bbc3131689ecf6a (patch) | |
tree | 33b049f0e281ab88d3223dedb8ceecfa6b5e7262 /core/src/main/kotlin/utilities | |
parent | 6a4eda715f59106530f5f6078ff2c93e49079ac6 (diff) | |
download | dokka-f0d84fb8947ce4e5aa6796787bbc3131689ecf6a.tar.gz dokka-f0d84fb8947ce4e5aa6796787bbc3131689ecf6a.tar.bz2 dokka-f0d84fb8947ce4e5aa6796787bbc3131689ecf6a.zip |
Remove unnecesarily complex utility
Diffstat (limited to 'core/src/main/kotlin/utilities')
-rw-r--r-- | core/src/main/kotlin/utilities/genericUtils.kt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/src/main/kotlin/utilities/genericUtils.kt b/core/src/main/kotlin/utilities/genericUtils.kt deleted file mode 100644 index e94e4e8f..00000000 --- a/core/src/main/kotlin/utilities/genericUtils.kt +++ /dev/null @@ -1,3 +0,0 @@ -package org.jetbrains.dokka.utilities - -fun <T : Any, S : Any> Pair<T?, S?>.pullOutNull(): Pair<T, S>? = first?.let { f -> second?.let { s -> f to s } }
\ No newline at end of file |