Skip to content

Commit 1e25540

Browse files
committed
tmp
1 parent 629f34f commit 1e25540

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

src/java.base/share/classes/java/lang/VirtualThread.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
*/
2525
package java.lang;
2626

27+
import java.lang.ref.Reference;
2728
import java.security.AccessController;
2829
import java.security.PrivilegedAction;
2930
import java.util.Locale;
@@ -304,7 +305,7 @@ private void run(Runnable task) {
304305
event.commit();
305306
}
306307

307-
Object bindings = Thread.scopedValueBindings();
308+
Object bindings = scopedValueBindings();
308309
try {
309310
runWith(bindings, task);
310311
} catch (Throwable exc) {

src/jdk.jfr/share/classes/jdk/jfr/FlightRecorder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, 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
@@ -45,7 +45,7 @@
4545
import jdk.jfr.internal.PlatformRecording;
4646
import jdk.jfr.internal.Repository;
4747
import jdk.jfr.internal.SecuritySupport;
48-
import jdk.jfr.internal.util.Utils;
48+
import jdk.jfr.internal.Utils;
4949
import jdk.jfr.internal.periodic.PeriodicEvents;
5050

5151
/**

src/jdk.jfr/share/classes/jdk/jfr/internal/EventInstrumentation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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

src/jdk.jfr/share/classes/jdk/jfr/internal/JVM.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2022, 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
@@ -50,7 +50,7 @@ private static class ChunkRotationMonitor {}
5050
*/
5151
public static final Object CHUNK_ROTATION_MONITOR = new ChunkRotationMonitor();
5252

53-
private volatile static boolean nativeOK;
53+
private volatile boolean nativeOK;
5454

5555
private static native void registerNatives();
5656

src/jdk.jfr/share/classes/jdk/jfr/internal/MetadataLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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

src/jdk.jfr/share/classes/jdk/jfr/internal/Options.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2021, 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

src/jdk.jfr/share/classes/jdk/jfr/internal/TypeLibrary.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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
@@ -58,7 +58,6 @@
5858
import jdk.jfr.Timespan;
5959
import jdk.jfr.Timestamp;
6060
import jdk.jfr.ValueDescriptor;
61-
import jdk.jfr.internal.util.Utils;
6261

6362
public final class TypeLibrary {
6463
private static boolean implicitFieldTypes;

src/jdk.jfr/share/classes/jdk/jfr/internal/event/EventWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2022, 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

0 commit comments

Comments
 (0)