We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent def21ea commit 07718a0Copy full SHA for 07718a0
src/commonMain/kotlin/com/github/difflib/patch/Patch.kt
@@ -29,7 +29,7 @@ import com.github.difflib.algorithm.Change
29
</T> */
30
class Patch<T> constructor(estimatedPatchSize: Int = 10) {
31
32
- private val deltas: MutableList<AbstractDelta<T>>
+ internal val deltas: MutableList<AbstractDelta<T>>
33
34
init {
35
deltas = ArrayList(estimatedPatchSize)
0 commit comments