Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAyushman Jain2012-07-19 19:11:27 +0000
committerJayaprakash Arthanareeswaran2012-08-10 06:57:24 +0000
commit587deaab79fbebc87b8089ceba0433e6e93b37c4 (patch)
treef62bd68a4247abc09a3f601ea6af9f391a573d1a
parent4b2ce36cb1e443f82351b7a276c4a994ddb0c499 (diff)
downloadeclipse.jdt.core-587deaab79fbebc87b8089ceba0433e6e93b37c4.tar.gz
eclipse.jdt.core-587deaab79fbebc87b8089ceba0433e6e93b37c4.tar.xz
eclipse.jdt.core-587deaab79fbebc87b8089ceba0433e6e93b37c4.zip
master - Fixed bug 385540 - Incorrect javadoc for @NonNullByDefault
-rw-r--r--org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNullByDefault.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNullByDefault.java b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNullByDefault.java
index 0ef1cacb48..bb0f9b9460 100644
--- a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNullByDefault.java
+++ b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNullByDefault.java
@@ -32,7 +32,7 @@ import java.lang.annotation.Target;
* <dt>Nested defaults</dt>
* <dd>If a <code>@NonNullByDefault</code>
* annotation is used within the scope of another <code>@NonNullByDefault</code>
- * annotation or a project-wide default setting, the innermost annotation defines the
+ * annotation, the innermost annotation defines the
* default applicable at any given position (depending on the parameter {@link #value()}).</dd>
* </dl>
* Note that for applying an annotation to a package, a file by the name

Back to the top