Skip to content

Commit 9ee741d

Browse files
nizarbenallaMichael-Mc-Mahon
authored andcommittedJun 4, 2024
8332015: since-checker - Add @ since tags to jdk.httpserver
Reviewed-by: alanb, dfuchs, michaelm
1 parent 0f4154a commit 9ee741d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/jdk.httpserver/share/classes/com/sun/net/httpserver/BasicAuthenticator.java

+2
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ public BasicAuthenticator(String realm) {
8585
* correctly quoted, as specified in <a href="https://tools.ietf.org/html/rfc7230#section-3.2">
8686
* RFC 7230 section-3.2</a>. Note, any {@code \} character used for
8787
* quoting must itself be quoted in source code.
88+
*
89+
* @since 14
8890
*/
8991
public BasicAuthenticator(String realm, Charset charset) {
9092
Objects.requireNonNull(charset);

‎src/jdk.httpserver/share/classes/com/sun/net/httpserver/spi/package-info.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -26,5 +26,6 @@
2626
/**
2727
* Provides a pluggable service provider interface, which allows the HTTP server
2828
* implementation to be replaced with other implementations.
29+
* @since 1.6
2930
*/
3031
package com.sun.net.httpserver.spi;

0 commit comments

Comments
 (0)
Please sign in to comment.