summaryrefslogtreecommitdiff
path: root/javaunohelper
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-22 09:48:17 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-22 09:58:19 +0200
commit616c6924f18911fce110918edf05ed2f4e52dba9 (patch)
tree3e307b3e91fe6b025701eb3dfea0ff61c750aff6 /javaunohelper
parent7ca8407b403bf97a472ce2ade7e3fa1cb588cf24 (diff)
s/the the/the/
Change-Id: Iadacffaad832c6ff06757e8567e24f929f24a4c3
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java2
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java2
-rw-r--r--javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java4
3 files changed, 4 insertions, 4 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
index b2571813f34e..0a8a924856a0 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java
@@ -595,7 +595,7 @@ XMultiPropertySet
* If a member is an UNO interface, then <em>setVal</em> is queried for this interface and the result is returned.
* If <em>setVal</em> is null then <em>newVal</em> will be null too after return.
* <p>
- * If a property value is stored using a primitive type the the out-parameters
+ * If a property value is stored using a primitive type the out-parameters
* <em>curVal</em> and <em>newVal</em> contain the respective wrapper class (e.g.java.lang.Byte, etc.).
* curVal is used in calls to the XVetoableChangeListener and XPropertyChangeListener.
*
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java b/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
index 7285e3741bd3..057dc1fffc1f 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
@@ -26,7 +26,7 @@ import java.util.LinkedList;
/** An XAdapter implementation that holds a weak reference (java.lang.ref.WeakReference)
* to an object. Clients can register listener (com.sun.star.lang.XReference) which
- * are notified when the the object (the one which is kept weak) is being finalized. That
+ * are notified when the object (the one which is kept weak) is being finalized. That
* is, that object is being destroyed because there are not any hard references
* to it.
*/
diff --git a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java
index 81d3e63e420f..c6d4b8b9dd09 100644
--- a/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java
+++ b/javaunohelper/test/com/sun/star/lib/uno/helper/PropertySet_Test.java
@@ -1305,7 +1305,7 @@ class TestClass extends PropertySet
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
r[i++]= convertPropertyValue(propBoolC, outNewVal, outOldVal, value);
r[i++]= ((Boolean)value).booleanValue() == ((Boolean) outNewVal[0]).booleanValue();
- // must fail because the the member boolPropD is private
+ // must fail because the member boolPropD is private
try{
convertPropertyValue(propBoolD, outNewVal, outOldVal, value);
i++;
@@ -1411,7 +1411,7 @@ class TestClass extends PropertySet
r[i++]= boolPropB == ((Boolean) value).booleanValue();
setPropertyValueNoBroadcast(propBoolC, value);
r[i++]= boolPropC == ((Boolean) value).booleanValue();
- // must fail because the the member boolPropD is private
+ // must fail because the member boolPropD is private
try{
setPropertyValueNoBroadcast(propBoolD, value);
}catch(com.sun.star.lang.WrappedTargetException e)