@pdxrunner @sboorlagadda I'm actually not sure how to handle some of this logic:
```java
      if (endChar == '\n') {
        // trim off the \n since println will do it for us
        wordEnd--;
        if (wordEnd > 0 && target.charAt(wordEnd - 1) == '\r') {
          wordEnd--;
        }
```
I can't change that to System.getProperty("line.separator")

How about I merge this in and then I file a ticket to change all \n to be 
platform independent and I pair with one or both of you to fix everything 
related to \n?

[ Full content available at: https://github.com/apache/geode/pull/2517 ]
This message was relayed via gitbox.apache.org for 
notifications@geode.apache.org

Reply via email to