summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/complexlib/ShowTargets.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/complexlib/ShowTargets.java')
-rw-r--r--qadevOOo/runner/complexlib/ShowTargets.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/qadevOOo/runner/complexlib/ShowTargets.java b/qadevOOo/runner/complexlib/ShowTargets.java
index 3835fc44031d..478d565afc54 100644
--- a/qadevOOo/runner/complexlib/ShowTargets.java
+++ b/qadevOOo/runner/complexlib/ShowTargets.java
@@ -82,13 +82,13 @@ public class ShowTargets
for ( int i=0; i<targets.size(); ++i )
{
// target
- String target = (String)targets.get(i);
+ String target = targets.get(i);
// 'tab'
System.out.print( " " + target );
for ( int s = maxTargetLength - target.length(); s>0; --s )
System.out.print( " " );
// description
- System.out.println( " (" + (String)descs.get(i) + ")" );
+ System.out.println( " (" + descs.get(i) + ")" );
}
}