summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/PropertyHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/PropertyHelper.java')
-rw-r--r--qadevOOo/runner/helper/PropertyHelper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/helper/PropertyHelper.java b/qadevOOo/runner/helper/PropertyHelper.java
index 76179927cd87..c91b4053aeb4 100644
--- a/qadevOOo/runner/helper/PropertyHelper.java
+++ b/qadevOOo/runner/helper/PropertyHelper.java
@@ -29,7 +29,7 @@ public class PropertyHelper
@param _aArrayList
@return a PropertyValue[]
*/
- public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList _aPropertyList)
+ public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList<PropertyValue> _aPropertyList)
{
// copy the whole PropertyValue List to an PropertyValue Array
PropertyValue[] aSaveProperties = null;
@@ -40,7 +40,7 @@ public class PropertyHelper
}
else
{
- aSaveProperties = (PropertyValue[])_aPropertyList.toArray(new PropertyValue[_aPropertyList.size()]);
+ aSaveProperties = _aPropertyList.toArray(new PropertyValue[_aPropertyList.size()]);
// old java 1.4
// if (_aPropertyList.size() > 0)
// {