OpenJDK / jdk / jdk
changeset 56522:270fdb5898f2
8214560: Use {@systemProperty} for definitions of system properties (httpserver)
Reviewed-by: dfuchs, coffeys, chegar
Contributed-by: kiran.sidhartha.ravikumar@oracle.com
author | coffeys |
---|---|
date | Wed, 09 Oct 2019 10:15:58 +0000 |
parents | 7605e97c9491 |
children | 8f849d3ec1e5 |
files | src/jdk.httpserver/share/classes/com/sun/net/httpserver/spi/HttpServerProvider.java |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/jdk.httpserver/share/classes/com/sun/net/httpserver/spi/HttpServerProvider.java Wed Oct 09 10:14:03 2019 +0000 +++ b/src/jdk.httpserver/share/classes/com/sun/net/httpserver/spi/HttpServerProvider.java Wed Oct 09 10:15:58 2019 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2019, 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 @@ -133,8 +133,9 @@ * <ol> * * <li><p> If the system property - * {@code com.sun.net.httpserver.HttpServerProvider} is defined then it - * is taken to be the fully-qualified name of a concrete provider class. + * {@systemProperty com.sun.net.httpserver.HttpServerProvider} + * is defined then it is taken to be the fully-qualified name + * of a concrete provider class. * The class is loaded and instantiated; if this process fails then an * unspecified unchecked error or exception is thrown. </p></li> *