8050086: jdk.Exported is missing @return
authordarcy
Fri, 11 Jul 2014 13:57:32 -0700
changeset 25451 6f24a67dfac5
parent 25450 9db7fe8de854
child 25452 581d57f5c7d8
8050086: jdk.Exported is missing @return Reviewed-by: jjg
langtools/src/share/classes/jdk/Exported.java
--- a/langtools/src/share/classes/jdk/Exported.java	Fri Jul 11 06:52:04 2014 -0700
+++ b/langtools/src/share/classes/jdk/Exported.java	Fri Jul 11 13:57:32 2014 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -71,7 +71,10 @@
 @Exported
 public @interface Exported {
     /**
-     * Whether or not the annotated type or package is an exported part of the JDK.
+     * Whether or not the annotated type or package is an exported
+     * part of the JDK.
+     * @return whether or not the annotated type or package is an exported
+     * part of the JDK
      */
     boolean value() default true;
 }