summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/graphical/EnhancedComplexTestCase.java')
-rw-r--r--qadevOOo/runner/graphical/EnhancedComplexTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/graphical/EnhancedComplexTestCase.java b/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
index f3564d3c9473..52c09e7ffb5c 100644
--- a/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
+++ b/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
@@ -155,7 +155,7 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
IniFile aIniFile = new IniFile(_aParam.getInputPath());
while (aIniFile.hasMoreElements())
{
- String sKey = (String)aIniFile.nextElement();
+ String sKey = aIniFile.nextElement();
String sPath = FileHelper.getPath(_aParam.getInputPath());
String sEntry = FileHelper.appendPath(sPath, sKey);
File aFile = new File(sEntry);
@@ -348,7 +348,7 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
IniFile aIniFile = new IniFile(_aParam.getInputPath());
while (aIniFile.hasMoreElements())
{
- String sSection = (String)aIniFile.nextElement();
+ String sSection = aIniFile.nextElement();
// TODO: not supported yet.
// callEveryPictureInIniFile(aIniFile, sSection, _aParam);
}