aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/lang/annotation
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/java/lang/annotation')
-rw-r--r--libjava/classpath/java/lang/annotation/Annotation.java4
-rw-r--r--libjava/classpath/java/lang/annotation/AnnotationTypeMismatchException.java2
-rw-r--r--libjava/classpath/java/lang/annotation/IncompleteAnnotationException.java8
3 files changed, 7 insertions, 7 deletions
diff --git a/libjava/classpath/java/lang/annotation/Annotation.java b/libjava/classpath/java/lang/annotation/Annotation.java
index cc334ec..aac8bb9 100644
--- a/libjava/classpath/java/lang/annotation/Annotation.java
+++ b/libjava/classpath/java/lang/annotation/Annotation.java
@@ -67,13 +67,13 @@ public interface Annotation
* annotation, according to the following:
* <ul>
* <li>If the members are <code>float</code>s, then, for floats
- * <code>x</code> and <code>y</code>,
+ * <code>x</code> and <code>y</code>,
* <code>Float.valueOf(x).equals(Float.valueOf(y)</code> must return
* true. This differs from the usual (<code>==</code>) comparison
* in that <code>NaN</code> is considered equal to itself and positive
* and negative zero are seen as different.</li>
* <li>Likewise, if the members are <code>double</code>s, then, for doubles
- * <code>x</code> and <code>y</code>,
+ * <code>x</code> and <code>y</code>,
* <code>Double.valueOf(x).equals(Double.valueOf(y)</code> must return
* true. This differs from the usual (<code>==</code>) comparison
* in that <code>NaN</code> is considered equal to itself and positive
diff --git a/libjava/classpath/java/lang/annotation/AnnotationTypeMismatchException.java b/libjava/classpath/java/lang/annotation/AnnotationTypeMismatchException.java
index 653305d..bab32e0 100644
--- a/libjava/classpath/java/lang/annotation/AnnotationTypeMismatchException.java
+++ b/libjava/classpath/java/lang/annotation/AnnotationTypeMismatchException.java
@@ -44,7 +44,7 @@ import java.lang.reflect.Method;
* which the type has changed, since compilation or serialization
* took place. The mismatch between the compiled or serialized
* type and the current type causes this exception to be thrown.
- *
+ *
* @author Tom Tromey (tromey@redhat.com)
* @author Andrew John Hughes (gnu_andrew@member.fsf.org)
* @since 1.5
diff --git a/libjava/classpath/java/lang/annotation/IncompleteAnnotationException.java b/libjava/classpath/java/lang/annotation/IncompleteAnnotationException.java
index 5b20650..b511b36 100644
--- a/libjava/classpath/java/lang/annotation/IncompleteAnnotationException.java
+++ b/libjava/classpath/java/lang/annotation/IncompleteAnnotationException.java
@@ -40,8 +40,8 @@ package java.lang.annotation;
/**
* Thrown when accessing an element within an annotation which
* was added since compilation or serialization took place, and
- * does not have a default value.
- *
+ * does not have a default value.
+ *
* @author Tom Tromey (tromey@redhat.com)
* @author Andrew John Hughes (gnu_andrew@member.fsf.org)
* @since 1.5
@@ -59,7 +59,7 @@ public class IncompleteAnnotationException extends RuntimeException
* @param name the name of the missing element.
*/
public IncompleteAnnotationException(Class<? extends Annotation> type,
- String name)
+ String name)
{
this.annotationType = type;
this.elementName = name;
@@ -100,7 +100,7 @@ public class IncompleteAnnotationException extends RuntimeException
/**
* The name of the missing element.
*
- * @serial the name of the missing element.
+ * @serial the name of the missing element.
*/
private String elementName;