summaryrefslogtreecommitdiff
path: root/extensions/qa/integration/extensions/ComponentFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/qa/integration/extensions/ComponentFactory.java')
-rw-r--r--extensions/qa/integration/extensions/ComponentFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/qa/integration/extensions/ComponentFactory.java b/extensions/qa/integration/extensions/ComponentFactory.java
index 5a449dfda3cc..170e19a43667 100644
--- a/extensions/qa/integration/extensions/ComponentFactory.java
+++ b/extensions/qa/integration/extensions/ComponentFactory.java
@@ -40,7 +40,7 @@ public class ComponentFactory implements XSingleComponentFactory
catch ( java.lang.ClassNotFoundException e ) { }
Constructor ctors[] = _handlerClass.getConstructors();
- for ( int i = 0; i < ctors.length && ctors != null; ++i)
+ for ( int i = 0; i < ctors.length; ++i)
{
Class ctorParams[] = ctors[i].getParameterTypes();
if ( ( ctorParams.length == 1 ) && ( ctorParams[0].equals( XComponentContext.class ) ) )