Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Commit

Permalink
8288524: Allow @systemProperty to appear in overview documentation
Browse files Browse the repository at this point in the history
Reviewed-by: jjg
  • Loading branch information
pavelrappo committed Jun 27, 2022
1 parent caa6b74 commit 17ef8ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Expand Up @@ -38,9 +38,8 @@
*/
public class SystemPropertyTaglet extends BaseTaglet {

SystemPropertyTaglet(){
super(DocTree.Kind.SYSTEM_PROPERTY, true, EnumSet.of(Location.CONSTRUCTOR, Location.METHOD, Location.FIELD,
Location.PACKAGE, Location.MODULE, Location.TYPE));
SystemPropertyTaglet() {
super(DocTree.Kind.SYSTEM_PROPERTY, true, EnumSet.allOf(Location.class));
}

@Override
Expand Down
Expand Up @@ -22,7 +22,7 @@
@since: block overview module package type constructor method field ...... ........
{@snippet}: ..... overview module package type constructor method field inline ........
{@summary}: ..... overview module package type constructor method field inline ........
{@systemProperty}: ..... ........ module package type constructor method field inline ........
{@systemProperty}: ..... overview module package type constructor method field inline ........
@throws: block ........ ...... ....... .... constructor method ..... ...... ........
@treatAsPrivate: block ........ ...... ....... type ........... method field ...... ........
@uses: block ........ module ....... .... ........... ...... ..... ...... ........
Expand Down

1 comment on commit 17ef8ca

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.