summaryrefslogtreecommitdiff
path: root/javaunohelper
diff options
context:
space:
mode:
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java2
-rw-r--r--javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
index 56c77a8d4953..bc34c875331b 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/InterfaceContainer.java
@@ -96,8 +96,6 @@ public class InterfaceContainer implements Cloneable
/**
* The size of the ArrayList (the number of elements it contains).
- *
- * @serial
*/
private int size;
diff --git a/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java b/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
index 46ba04d368cb..7285e3741bd3 100644
--- a/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
+++ b/javaunohelper/com/sun/star/lib/uno/helper/WeakAdapter.java
@@ -74,6 +74,7 @@ public class WeakAdapter implements XAdapter
{
return m_weakRef.get();
}
+
/** Method of com.sun.star.uno.XAdapter. Called by clients to register listener which
* are notified when the weak object is dying.
*@param xReference a listener
@@ -82,8 +83,9 @@ public class WeakAdapter implements XAdapter
{
m_xreferenceList.remove(xReference);
}
+
/** Method of com.sun.star.uno.XAdapter. Called by clients to unregister listeners.
- *@param a listener
+ *@param xReference listener
*/
public void addReference(XReference xReference)
{