Class DeleteDelta<T>

  • Type Parameters:
    T - The type of the compared elements in the 'lines'.

    public class DeleteDelta<T>
    extends Delta<T>
    Initially copied from https://code.google.com/p/java-diff-utils/.

    Describes the delete-delta between original and revised texts.

    Author:
    Dmitry Naumenko
    • Constructor Detail

      • DeleteDelta

        public DeleteDelta​(Chunk<T> original,
                           Chunk<T> revised)
        Creates a change delta with the two given chunks.
        Parameters:
        original - The original chunk. Must not be null.
        revised - The original chunk. Must not be null.