summaryrefslogtreecommitdiff
path: root/qadevOOo/runner
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-27 13:32:13 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-05-28 16:48:09 +0200
commitf1f2e2823749452d8e7f23891876e5cc10000553 (patch)
tree7f27e3601205a715fc5c7ad668cafb5878240f2d /qadevOOo/runner
parent55e89e8f96665598bad96721ba4d0924150be864 (diff)
Fix typos (including sequenze->sequence)
Change-Id: Icfd6c5cbc405bad51a0d7f10cdb55c70a1fe5b00 Reviewed-on: https://gerrit.libreoffice.org/73078 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r--qadevOOo/runner/util/dbg.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/qadevOOo/runner/util/dbg.java b/qadevOOo/runner/util/dbg.java
index 3a0035cde079..5416e92f6d58 100644
--- a/qadevOOo/runner/util/dbg.java
+++ b/qadevOOo/runner/util/dbg.java
@@ -186,15 +186,15 @@ public class dbg {
/**
- * Print the names and the values of a sequenze of <code>PropertyValue</code>
+ * Print the names and the values of a sequence of <code>PropertyValue</code>
* to a print writer.
* @param ps The property which should displayed
* @param out The print writer which is used as output.
* @see com.sun.star.beans.PropertyValue
*/
- private static void printProperyValueSequenzePairs(PropertyValue[] ps, PrintWriter out){
+ private static void printPropertyValueSequencePairs(PropertyValue[] ps, PrintWriter out){
for( int i = 0; i < ps.length; i++){
- printProperyValuePairs(ps[i], out);
+ printPropertyValuePairs(ps[i], out);
}
}
@@ -206,7 +206,7 @@ public class dbg {
* @param out The print writer which is used as output.
* @see com.sun.star.beans.PropertyValue
*/
- private static void printProperyValuePairs(PropertyValue ps, PrintWriter out){
+ private static void printPropertyValuePairs(PropertyValue ps, PrintWriter out){
if (ps.Value instanceof String[] ){
String[] values = (String[]) ps.Value;
@@ -227,13 +227,13 @@ public class dbg {
} else if (ps.Value instanceof PropertyValue){
out.println("--------");
out.println(" Name: '" + ps.Name + "' contains PropertyValue:");
- printProperyValuePairs((PropertyValue)ps.Value, out);
+ printPropertyValuePairs((PropertyValue)ps.Value, out);
out.println("--------");
} else if (ps.Value instanceof PropertyValue[]){
out.println("--------");
out.println(" Name: '" + ps.Name + "' contains PropertyValue[]:");
- printProperyValueSequenzePairs((PropertyValue[])ps.Value, out);
+ printPropertyValueSequencePairs((PropertyValue[])ps.Value, out);
out.println("--------");
} else {