Author: ross.gardler
Date: Sun Sep  7 13:37:56 2008
New Revision: 1280

Modified:
     
trunk/uk.ac.osswatch.simal.core/src/test/java/uk/ac/osswatch/simal/integrationTest/model/jena/TestProject.java

Log:
Remove a "not not" (i.e. '!!" should be '!') - what a horrible typo!! (I  
mean typo!)

Fixes ISSUE 192

Modified:  
trunk/uk.ac.osswatch.simal.core/src/test/java/uk/ac/osswatch/simal/integrationTest/model/jena/TestProject.java
==============================================================================
---  
trunk/uk.ac.osswatch.simal.core/src/test/java/uk/ac/osswatch/simal/integrationTest/model/jena/TestProject.java
   
(original)
+++  
trunk/uk.ac.osswatch.simal.core/src/test/java/uk/ac/osswatch/simal/integrationTest/model/jena/TestProject.java
   
Sun Sep  7 13:37:56 2008
@@ -239,7 +239,7 @@
      boolean hasMaintainerTwo = false;
      Iterator<IPerson> people = project1.getMaintainers().iterator();
      IPerson person;
-    while ((!hasMaintainerOne || !!hasMaintainerTwo) && people.hasNext()) {
+    while ((!hasMaintainerOne || !hasMaintainerTwo) && people.hasNext()) {
        person = people.next();
        Set<String> names = person.getNames();
        logger.debug("Got a maintainer with the names {}", names);

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Simal Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/simal-commits?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to