intelligen / java-diff-utils

Automatically exported from code.google.com/p/java-diff-utils
0 stars 0 forks source link

Please add support for generics instead of using Objects #22

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The library will be type-safe, if you use generics. E.g.:

public interface DiffAlgorithm<T> {    
    public Patch<T> diff(T[] original, T[] revised);    
    public Patch<T> diff(List<T> original, List<T> revised);
}

Original issue reported on code.google.com by vladimir...@gmail.com on 9 Feb 2012 at 12:30

GoogleCodeExporter commented 9 years ago
Hi,

Since version 1.3.0 (branch) generics are used.
Use maven dependency with version 1.3.0.

Reganrds
Simon

Original comment by simon.mi...@gmail.com on 17 Mar 2013 at 3:28