java-diff-utils icon indicating copy to clipboard operation
java-diff-utils copied to clipboard

Library for performing the comparison operations between texts

Results 11 java-diff-utils issues
Sort by recently updated
recently updated
newest added

In DiffUtils, there is the following regular expression: ``` public class DiffUtils { private static Pattern unifiedDiffChunkRe = Pattern .compile("^@@\\s+-(?:(\\d+)(?:,(\\d+))?)\\s+\\+(?:(\\d+)(?:,(\\d+))?)\\s+@@$"); ``` This will fail if there is a section header...