com.netflix.java.refactor.JavaSourceDiff.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
class JavaSourceDiff(private val source: JavaSource) {
private val before = source.text()
fun gitStylePatch() = InMemoryDiffEntry(source.file().toString(), before, source.text()).diff
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy