Skip to content

Commit

Permalink
Add dependancy on Kotlin Reflect and optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Sternbach-Software committed Jul 30, 2021
1 parent 10da6b9 commit 4d57c86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ compileKotlin {

compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-reflect:1.5.21"
}
3 changes: 1 addition & 2 deletions src/main/kotlin/KotlinFunctionLibrary.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import kotlin.reflect.KClass
import kotlin.reflect.KProperty1
import kotlin.reflect.full.memberProperties
import kotlin.reflect.full.primaryConstructor
import kotlin.reflect.full.valueParameters
import kotlin.system.measureNanoTime


Expand Down Expand Up @@ -904,6 +903,6 @@ println("workingList2=$workingList2")*/

@JvmStatic
fun main(args: Array<String>) {

println("KotlinFunctionLibrary v2.0.4")
}
}

0 comments on commit 4d57c86

Please sign in to comment.