Multiline joint character inserted between lines.

Without this, lines get joined without any space in between
which is a problem for some line formats as separate words
get jumbled together.
This commit is contained in:
Alberto González Palomo
2017-02-01 12:46:02 +01:00
parent e1ac798843
commit 94091a0f9f
3 changed files with 32 additions and 26 deletions

View File

@@ -24,6 +24,7 @@ import org.apache.commons.lang.builder.ToStringBuilder;
public class Multiline {
public enum WhatType { Previous, Next };
public static byte JOINT = (byte) ' ';
private Pattern pattern = null;
private boolean negate = false;