summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/PropertyHandlerFactroy.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/PropertyHandlerFactroy.java')
-rw-r--r--qadevOOo/runner/helper/PropertyHandlerFactroy.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/helper/PropertyHandlerFactroy.java b/qadevOOo/runner/helper/PropertyHandlerFactroy.java
index 1dcdd3d3b2b3..8510787327d8 100644
--- a/qadevOOo/runner/helper/PropertyHandlerFactroy.java
+++ b/qadevOOo/runner/helper/PropertyHandlerFactroy.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -31,19 +31,19 @@ package helper;
import com.sun.star.lang.XSingleComponentFactory;
public class PropertyHandlerFactroy implements XSingleComponentFactory{
-
+
/** Creates a new instance of PropertyHandlerFactroy */
public PropertyHandlerFactroy() {
}
-
+
public Object createInstanceWithArgumentsAndContext(Object[] obj, com.sun.star.uno.XComponentContext xComponentContext)
throws com.sun.star.uno.Exception {
return new PropertyHandlerImpl();
}
-
+
public Object createInstanceWithContext(com.sun.star.uno.XComponentContext xComponentContext)
throws com.sun.star.uno.Exception {
return new PropertyHandlerImpl();
}
-
+
}