Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.
/ jdk17 Public archive

Commit f9c8c1c

Browse files
committed
8268903: JFR: RecordingStream::dump is missing @SInCE
Reviewed-by: mgronlun
1 parent d8a0582 commit f9c8c1c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/jdk.jfr/share/classes/jdk/jfr/consumer/RecordingStream.java

+2
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,8 @@ public void startAsync() {
424424
*
425425
* @see RecordingStream#setMaxAge(Duration)
426426
* @see RecordingStream#setMaxSize(long)
427+
*
428+
* @since 17
427429
*/
428430
public void dump(Path destination) throws IOException {
429431
Objects.requireNonNull(destination);

src/jdk.management.jfr/share/classes/jdk/management/jfr/RemoteRecordingStream.java

+2
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,8 @@ private void ensureStartable() {
583583
*
584584
* @see RemoteRecordingStream#setMaxAge(Duration)
585585
* @see RemoteRecordingStream#setMaxSize(long)
586+
*
587+
* @since 17
586588
*/
587589
public void dump(Path destination) throws IOException {
588590
Objects.requireNonNull(destination);

0 commit comments

Comments
 (0)