From 0940229305247b4e64e8c85c9734020c9808a6ec Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 31 Aug 2019 19:31:43 +0200 Subject: Fix '..' To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for lines ending with ".." instead of "..." It passed "make check" on Linux. Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe Reviewed-on: https://gerrit.libreoffice.org/78356 Reviewed-by: Julien Nabet Tested-by: Jenkins --- .../java/org/libreoffice/report/pentaho/DefaultNameGenerator.java | 2 +- .../libreoffice/report/pentaho/output/text/TextRawReportTarget.java | 6 +++--- .../report/pentaho/output/text/VariablesDeclarations.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'reportbuilder') diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java b/reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java index 6706426b25ca..46f2a032aeff 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java @@ -99,7 +99,7 @@ public class DefaultNameGenerator int counter = 0; while (exists) { - if (counter < 0) // wraparound should not happen.. + if (counter < 0) // wraparound should not happen... { throw new IOException(); } diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java index ba06f8d39381..d8e50d2d4991 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java @@ -546,7 +546,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget if (isTableMergeActive() && detailBandProcessingState == DETAIL_SECTION_OTHER_PRINTED && ObjectUtilities.equal(OfficeNamespaces.TABLE_NS, namespace) && ObjectUtilities.equal(OfficeToken.TABLE_COLUMNS, elementType)) { - // Skip the columns section if the tables get merged.. + // Skip the columns section if the tables get merged... startBuffering(getStylesCollection(), true); } else @@ -642,7 +642,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget if (style == null) { style = deriveStyle(OfficeToken.PARAGRAPH, styleName); - // Lets set the 'keep-together' flag.. + // Lets set the 'keep-together' flag... Element paragraphProps = style.getParagraphProperties(); if (paragraphProps == null) @@ -1070,7 +1070,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget { // if we have a repeating header, then skip the first one .. // if this is a repeating footer, skip the last one. This means, - // we have to buffer all group footers and wait for the next section.. + // we have to buffer all group footers and wait for the next section... startBuffering(getContentStylesCollection(), true); } diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations.java index 05fe8911b880..a2d82f54535c 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations.java @@ -61,7 +61,7 @@ public class VariablesDeclarations final String result = nameGenerator.generateName(name); if (holder.isEmpty()) { - // create the default mapping as well.. + // create the default mapping as well... holder.put(null, name); holder.put("time", name); holder.put("date", name); -- cgit