Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2014-08-17 14:01:13 +0000
committerStephan Herrmann2014-08-17 14:01:13 +0000
commitce0574029788b33026db9472a710468c9674b11f (patch)
tree11a7e9130d2e62a29bf4ac1c01fda13584a3f01b /org.eclipse.jdt.annotation
parent62012512b7f8c457e3722c4ee58656e0b57b87dd (diff)
downloadeclipse.jdt.core-ce0574029788b33026db9472a710468c9674b11f.tar.gz
eclipse.jdt.core-ce0574029788b33026db9472a710468c9674b11f.tar.xz
eclipse.jdt.core-ce0574029788b33026db9472a710468c9674b11f.zip
Fixed html validation problem reported in bug 366298 comment 51
Diffstat (limited to 'org.eclipse.jdt.annotation')
-rw-r--r--org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/DefaultLocation.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/DefaultLocation.java b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/DefaultLocation.java
index 02677bfc38..7a7f9e08f7 100644
--- a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/DefaultLocation.java
+++ b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/DefaultLocation.java
@@ -124,8 +124,10 @@ public enum DefaultLocation {
* }</pre>
* <p>
* These declarations are interpreted as:
+ * </p>
* <pre> &#64;NonNull Number [] n1;
* &#64;NonNull Number [] @NonNull[] n2;</pre>
+ * <p>
* I.e., both fields can still be <code>null</code> (see the unannotated left-most pair
* of brackets) but none of the <em>contents</em> of these arrays is allowed to be
* <code>null</code> (at any dimension).

Back to the top