From da40cac540e7d735edbe9069b3c8ec6af4530208 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 10 Nov 2014 15:05:25 +0100 Subject: Fix common typos. No automatic tools. Handmade… MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- .../java/org/openoffice/xmerge/DocumentSerializerFactory.java | 4 ++-- .../java/org/openoffice/xmerge/util/registry/ConverterInfoMgr.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'xmerge') diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializerFactory.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializerFactory.java index 12ab4c045616..e4852ff1e182 100644 --- a/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializerFactory.java +++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/DocumentSerializerFactory.java @@ -38,7 +38,7 @@ public interface DocumentSerializerFactory { * *

The {@code ConvertData} object is passed along to the created * {@code DocumentSerializer} via its constructor. The {@code ConvertData} - * is read and converted when the the {@code DocumentSerializer} object's + * is read and converted when the {@code DocumentSerializer} object's * {@code serialize} method is called.

* * @param doc {@code Document} object that the created @@ -47,4 +47,4 @@ public interface DocumentSerializerFactory { * @return A DocumentSerializer object. */ DocumentSerializer createDocumentSerializer(Document doc); -} \ No newline at end of file +} diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/ConverterInfoMgr.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/ConverterInfoMgr.java index d1c9b1c12470..09fd70f41d7a 100644 --- a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/ConverterInfoMgr.java +++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/registry/ConverterInfoMgr.java @@ -77,7 +77,7 @@ public final class ConverterInfoMgr { } } - // Since this is a adding to a static Vector, make sure this add method + // Since this is adding to a static Vector, make sure this add method // call is synchronized. synchronized (converterInfoList) { converterInfoList.add(ci); @@ -235,7 +235,7 @@ public final class ConverterInfoMgr { if (deviceFromMime.trim().equals(fromDeviceInfo)) { - // Found a a match for deviceFrom. Now loop over the + // Found a match for deviceFrom. Now loop over the // elements comparing with deviceToMime Iterator citEnum = converterInfoList.iterator(); while (citEnum.hasNext()) { @@ -466,4 +466,4 @@ public final class ConverterInfoMgr { } } } -} \ No newline at end of file +} -- cgit