Skip to content

Commit 07718a0

Browse files
committed
make deltas internal
1 parent def21ea commit 07718a0

File tree

1 file changed

+1
-1
lines changed
  • src/commonMain/kotlin/com/github/difflib/patch

1 file changed

+1
-1
lines changed

src/commonMain/kotlin/com/github/difflib/patch/Patch.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import com.github.difflib.algorithm.Change
2929
</T> */
3030
class Patch<T> constructor(estimatedPatchSize: Int = 10) {
3131

32-
private val deltas: MutableList<AbstractDelta<T>>
32+
internal val deltas: MutableList<AbstractDelta<T>>
3333

3434
init {
3535
deltas = ArrayList(estimatedPatchSize)

0 commit comments

Comments
 (0)