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

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

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

class Foo {
    private var num1 = 0
    private var num2 = 0
    private var num3 = 0

    fun inc1() = num1++
    fun inc2() = num2++
    fun inc3() = num3++
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy