mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-16 16:46:07 +09:00
16 lines
328 B
Kotlin
16 lines
328 B
Kotlin
package net.torvald.terrarum.console
|
|
|
|
/**
|
|
* Created by minjaesong on 2016-01-18.
|
|
*/
|
|
internal object ForceGC : ConsoleCommand {
|
|
override fun execute(args: Array<String>) {
|
|
System.gc()
|
|
Echo("Invoked System.gc")
|
|
}
|
|
|
|
override fun printUsage() {
|
|
Echo("Invoke garbage collection of JVM.")
|
|
}
|
|
}
|