summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/convwatch/GfxCompare.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/convwatch/GfxCompare.java')
-rw-r--r--qadevOOo/runner/convwatch/GfxCompare.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/convwatch/GfxCompare.java b/qadevOOo/runner/convwatch/GfxCompare.java
index 8d705dd0864f..44f766eeb602 100644
--- a/qadevOOo/runner/convwatch/GfxCompare.java
+++ b/qadevOOo/runner/convwatch/GfxCompare.java
@@ -53,16 +53,16 @@ public class GfxCompare extends EnhancedComplexTestCase
*
* @return a List of software which must accessable as an external executable
*/
- protected Object[] mustInstalledSoftware()
+ protected String[] mustInstalledSoftware()
{
- ArrayList aList = new ArrayList();
+ ArrayList<String> aList = new ArrayList<String>();
// Tools from ImageMagick
aList.add( "composite -version" );
aList.add( "identify -version" );
// Ghostscript
aList.add( "gs -version" );
- return aList.toArray();
+ return aList.toArray(new String[aList.size()]);
}