summaryrefslogtreecommitdiff
path: root/reportbuilder
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:31:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 11:15:11 +0200
commit0940229305247b4e64e8c85c9734020c9808a6ec (patch)
tree3491592b0ddade1859dca48c62007bafb9cf47d6 /reportbuilder
parent9c06059ec546683bfa095cf4f59ac6ea94da34fb (diff)
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 <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'reportbuilder')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java6
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/text/VariablesDeclarations.java2
3 files changed, 5 insertions, 5 deletions
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);