Useless call to String.trim() in org.apache.lcf.ui.util.MultilineParser
-----------------------------------------------------------------------

                 Key: CONNECTORS-43
                 URL: https://issues.apache.org/jira/browse/CONNECTORS-43
             Project: Lucene Connector Framework
          Issue Type: Bug
            Reporter: Mark Miller
            Priority: Trivial


{code}
nextString.trim();
{code}

should likely be:

{code}
nextString = nextString.trim();
{code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to