This commit is contained in:
wumpz
2019-06-10 00:19:52 +02:00
parent 4727557814
commit 4700647351
2 changed files with 4 additions and 1 deletions

View File

@@ -53,6 +53,9 @@ This is a test ~senctence~**for diffutils**.
But it can easily replaced by any other which is better for handing your texts. I have plan to add implementation of some in future.
### Changelog ###
* Version 4.1-SNAPSHOT
* preview of new Unified Diff Reader / Writer. This is not yet feature complete but passes the
tests of the old version.
* Version 4.0-SNAPSHOT
* moved to organisation **java-diff-utils**
* changed groupid to **io.github.java-diff-utils** and artifact id to **java-diff-utils**

View File

@@ -68,7 +68,7 @@ public final class UnifiedDiffReader {
String tailTxt = "";
while (READER.ready()) {
String line = READER.readLine();
if (line.equals("--")) {
if (line.matches("--\\s*")) {
break;
} else {
LOG.log(Level.INFO, "parsing line {0}", line);