All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mkohm.detekt.hint.demo.Rectangle.kt Maven / Gradle / Ivy

package io.github.mkohm.detekt.hint.demo

open class Rectangle(width: Int, height: Int) {
    private var width = 0
    private var height = 0

    init {
        this.width = width
        this.height = height
    }

    fun setWidth(newWidth: Int) {
        this.width = newWidth
    }

    fun setHeight(newHeight: Int) {
        this.height = newHeight

        lol()
    }

    private fun lol() {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy