forked from java-diff-utils/java-diff-utils
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Expected Behavior
Being included into MP project, to compile
Actual Behavior
e: ... Unresolved reference: DiffUtils
Steps to Reproduce the Problem
- Create empty MP library with kotlin 1.7
- add dependency
implementation("dev.gitlive:kotlin-diff-utils:4.1.4")
- add test code like
import dev.gitlive.difflib.DiffUtils
import kotlin.test.*
class BasicTest {
@Test
fun testPatch() {
val a = "Hello world"
val b = "Hello cruel world"
val c = "Bye world"
val patch = DiffUtils.diff(a.toList(), b.toList())
}
}
- it won compile, while IDEA for example indexes and 'sees' the library very well
Specifications
- Version: 4.1.4
- Platform: JVM, JS
Most likely something had been changed in mp library format.
Metadata
Metadata
Assignees
Labels
No labels