com.netflix.java.refactor.RefactorFix.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-source-refactor Show documentation
Show all versions of java-source-refactor Show documentation
Pluggable and distributed refactoring tool for Java source code
package com.netflix.java.refactor
import java.io.File
data class RefactorFix(val position: IntRange,
val changes: String?,
val source: File) {
val lineNumber: Int by lazy {
source.readText().substring(0, position.start).count { it == '\n' } + 1
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy