[Japi-cvs] SF.net SVN: japi:[1326] tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/ LineEndingParser.
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-05-23 14:39:49
|
Revision: 1326 http://japi.svn.sourceforge.net/japi/?rev=1326&view=rev Author: christianhujer Date: 2009-05-23 14:39:36 +0000 (Sat, 23 May 2009) Log Message: ----------- Fix PMD issues. Modified Paths: -------------- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java Modified: tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java =================================================================== --- tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java 2009-05-23 14:39:06 UTC (rev 1325) +++ tools/cstyle/trunk/src/prj/net/sf/japi/cstyle/LineEndingParser.java 2009-05-23 14:39:36 UTC (rev 1326) @@ -46,7 +46,7 @@ ? carriageReturn ? NewLine.DOS : NewLine.UNIX : carriageReturn ? NewLine.MAC : null; carriageReturn = c == ASCII_CR; - if (newLineFound != null && newLineFound != desiredNewLine) { + if (newLineFound != null && newLineFound != desiredNewLine) { // NOPMD // TODO:2009-02-18:christianhujer:Finish implementation. } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |