summaryrefslogtreecommitdiff
path: root/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
index caf5cdc9b2f3..650be99c87c3 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
@@ -314,7 +314,7 @@ public class InterfaceContainer implements Cloneable
while (it.hasNext())
{
Object obj= it.next();
- if (false == contains(obj))
+ if (!contains(obj))
{
retVal= false;
break;
@@ -556,7 +556,7 @@ public class InterfaceContainer implements Cloneable
break;
}
}
- if (bExists == false)
+ if (!bExists)
{
itColl= collection.iterator();
while (itColl.hasNext())
@@ -572,7 +572,7 @@ public class InterfaceContainer implements Cloneable
}
}
}
- if (bExists == true)
+ if (bExists)
arRetained[indexRetained++]= curElem;
}
retVal= size != indexRetained;