[Japi-cvs] SF.net SVN: japi:[1319] libs/util/trunk/src/prj/net/sf/japi/util/ NotNullIterator.java
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-05-23 14:19:11
|
Revision: 1319 http://japi.svn.sourceforge.net/japi/?rev=1319&view=rev Author: christianhujer Date: 2009-05-23 14:19:03 +0000 (Sat, 23 May 2009) Log Message: ----------- Suppress PMD warning - the alternative would be ugly code. Modified Paths: -------------- libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java Modified: libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java =================================================================== --- libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java 2009-05-22 17:45:44 UTC (rev 1318) +++ libs/util/trunk/src/prj/net/sf/japi/util/NotNullIterator.java 2009-05-23 14:19:03 UTC (rev 1319) @@ -47,7 +47,7 @@ /** Prefetches the next element. */ private void prefetchNext() { //noinspection NestedAssignment - while (iterator.hasNext() && (next = iterator.next()) == null) { + while (iterator.hasNext() && (next = iterator.next()) == null) { // NOPMD // nothing to do. } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |