summaryrefslogtreecommitdiffstats
path: root/reportbuilder
diff options
context:
space:
mode:
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);