summaryrefslogtreecommitdiff
path: root/libjava/javax/naming/RefAddr.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/javax/naming/RefAddr.java')
-rw-r--r--libjava/javax/naming/RefAddr.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/javax/naming/RefAddr.java b/libjava/javax/naming/RefAddr.java
index 9ed504f760d..a1c096c10d8 100644
--- a/libjava/javax/naming/RefAddr.java
+++ b/libjava/javax/naming/RefAddr.java
@@ -61,7 +61,7 @@ public abstract class RefAddr implements Serializable
* The string resprenstation of the type of address.
* Set by the constructor and returned by the getType() method.
*/
- protected final String addrType;
+ protected String addrType;
/**
* Protected constructor for use by subclasses.
@@ -98,7 +98,7 @@ public abstract class RefAddr implements Serializable
* is the same as this addrType and the content is equals to the
* content of this object.
*/
- public boolean equal(Object o)
+ public boolean equals(Object o)
{
if (o instanceof RefAddr)
{