This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of java_lang with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 2323

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

    |                        |- note: convert 'setSecurityManager_MethodID_27' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'setSecurityManager_MethodID_27' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
471 |
472 |     open class func setSecurityManager( arg0: SecurityManager? ) {
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:19:24: warning: static property 'TargetJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 | open class TargetForward: AnnotationForward, Target {
18 |
19 |     private static var TargetJNIClass: jclass?
   |                        |- warning: static property 'TargetJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'TargetJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'TargetJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     /// public abstract java.lang.Class java.lang.annotation.Annotation.annotationType()
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:23:24: warning: static property 'annotationType_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 |     /// public abstract java.lang.Class java.lang.annotation.Annotation.annotationType()
22 |
23 |     private static var annotationType_MethodID_2: jmethodID?
   |                        |- warning: static property 'annotationType_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'annotationType_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'annotationType_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     override open func annotationType() -> java_swift.JavaClass! {
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:36:24: warning: static property 'equals_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
34 |     /// public abstract boolean java.lang.annotation.Annotation.equals(java.lang.Object)
35 |
36 |     private static var equals_MethodID_3: jmethodID?
   |                        |- warning: static property 'equals_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'equals_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'equals_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 |     override open func equals( obj: java_swift.JavaObject? ) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:52:24: warning: static property 'hashCode_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 |     /// public abstract int java.lang.annotation.Annotation.hashCode()
51 |
52 |     private static var hashCode_MethodID_4: jmethodID?
   |                        |- warning: static property 'hashCode_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'hashCode_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'hashCode_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |
54 |     override open func hashCode() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:64:24: warning: static property 'toString_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
62 |     /// public abstract java.lang.String java.lang.annotation.Annotation.toString()
63 |
64 |     private static var toString_MethodID_5: jmethodID?
   |                        |- warning: static property 'toString_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'toString_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'toString_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 |
66 |     override open func toString() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/Target.swift:77:24: warning: static property 'value_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
75 |     /// public abstract java.lang.annotation.ElementType[] java.lang.annotation.Target.value()
76 |
77 |     private static var value_MethodID_6: jmethodID?
   |                        |- warning: static property 'value_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'value_MethodID_6' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'value_MethodID_6' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 |     open func value() -> [ElementType]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadDeath.swift:17:24: warning: static property 'ThreadDeathJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var ThreadDeathJNIClass: jclass?
   |                        |- warning: static property 'ThreadDeathJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'ThreadDeathJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'ThreadDeathJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.ThreadDeath.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/ThreadDeath.swift:55:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
53 |     /// public java.lang.ThreadDeath()
54 |
55 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadDeath.swift:8:12: warning: class 'ThreadDeath' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.ThreadDeath ///
 7 |
 8 | open class ThreadDeath: JavaError {
   |            `- warning: class 'ThreadDeath' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:17:24: warning: static property 'ThreadGroupJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var ThreadGroupJNIClass: jclass?
    |                        |- warning: static property 'ThreadGroupJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'ThreadGroupJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'ThreadGroupJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// boolean java.lang.ThreadGroup.daemon
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:65:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 63 |     /// public java.lang.ThreadGroup(java.lang.String)
 64 |
 65 |     private static var new_MethodID_1: jmethodID?
    |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |
 67 |     public convenience init( arg0: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:82:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 80 |     /// public java.lang.ThreadGroup(java.lang.ThreadGroup,java.lang.String)
 81 |
 82 |     private static var new_MethodID_2: jmethodID?
    |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |     public convenience init( arg0: ThreadGroup?, arg1: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:104:24: warning: static property 'activeCount_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
102 |     /// public int java.lang.ThreadGroup.activeCount()
103 |
104 |     private static var activeCount_MethodID_3: jmethodID?
    |                        |- warning: static property 'activeCount_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'activeCount_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'activeCount_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |
106 |     open func activeCount() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:116:24: warning: static property 'activeGroupCount_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
114 |     /// public int java.lang.ThreadGroup.activeGroupCount()
115 |
116 |     private static var activeGroupCount_MethodID_4: jmethodID?
    |                        |- warning: static property 'activeGroupCount_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'activeGroupCount_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'activeGroupCount_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |
118 |     open func activeGroupCount() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:138:24: warning: static property 'allowThreadSuspension_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
136 |     /// public boolean java.lang.ThreadGroup.allowThreadSuspension(boolean)
137 |
138 |     private static var allowThreadSuspension_MethodID_5: jmethodID?
    |                        |- warning: static property 'allowThreadSuspension_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'allowThreadSuspension_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'allowThreadSuspension_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |
140 |     open func allowThreadSuspension( arg0: Bool ) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:154:24: warning: static property 'checkAccess_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
152 |     /// public final void java.lang.ThreadGroup.checkAccess()
153 |
154 |     private static var checkAccess_MethodID_6: jmethodID?
    |                        |- warning: static property 'checkAccess_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'checkAccess_MethodID_6' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'checkAccess_MethodID_6' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |
156 |     open func checkAccess() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:165:24: warning: static property 'destroy_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
163 |     /// public final void java.lang.ThreadGroup.destroy()
164 |
165 |     private static var destroy_MethodID_7: jmethodID?
    |                        |- warning: static property 'destroy_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'destroy_MethodID_7' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'destroy_MethodID_7' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
166 |
167 |     open func destroy() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:176:24: warning: static property 'enumerate_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
174 |     /// public int java.lang.ThreadGroup.enumerate(java.lang.Thread[])
175 |
176 |     private static var enumerate_MethodID_8: jmethodID?
    |                        |- warning: static property 'enumerate_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'enumerate_MethodID_8' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'enumerate_MethodID_8' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 |
178 |     open func enumerate( arg0: [JavaThread]? ) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:192:24: warning: static property 'enumerate_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
190 |     /// public int java.lang.ThreadGroup.enumerate(java.lang.Thread[],boolean)
191 |
192 |     private static var enumerate_MethodID_9: jmethodID?
    |                        |- warning: static property 'enumerate_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'enumerate_MethodID_9' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'enumerate_MethodID_9' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 |
194 |     open func enumerate( arg0: [JavaThread]?, arg1: Bool ) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:211:24: warning: static property 'enumerate_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
209 |     /// public int java.lang.ThreadGroup.enumerate(java.lang.ThreadGroup[])
210 |
211 |     private static var enumerate_MethodID_10: jmethodID?
    |                        |- warning: static property 'enumerate_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'enumerate_MethodID_10' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'enumerate_MethodID_10' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |
213 |     open func enumerate( arg0: [ThreadGroup]? ) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:227:24: warning: static property 'enumerate_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
225 |     /// public int java.lang.ThreadGroup.enumerate(java.lang.ThreadGroup[],boolean)
226 |
227 |     private static var enumerate_MethodID_11: jmethodID?
    |                        |- warning: static property 'enumerate_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'enumerate_MethodID_11' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'enumerate_MethodID_11' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
228 |
229 |     open func enumerate( arg0: [ThreadGroup]?, arg1: Bool ) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:246:24: warning: static property 'getMaxPriority_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
244 |     /// public final int java.lang.ThreadGroup.getMaxPriority()
245 |
246 |     private static var getMaxPriority_MethodID_12: jmethodID?
    |                        |- warning: static property 'getMaxPriority_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getMaxPriority_MethodID_12' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getMaxPriority_MethodID_12' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
247 |
248 |     open func getMaxPriority() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:258:24: warning: static property 'getName_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
256 |     /// public final java.lang.String java.lang.ThreadGroup.getName()
257 |
258 |     private static var getName_MethodID_13: jmethodID?
    |                        |- warning: static property 'getName_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getName_MethodID_13' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getName_MethodID_13' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 |
260 |     open func getName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:271:24: warning: static property 'getParent_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
269 |     /// public final java.lang.ThreadGroup java.lang.ThreadGroup.getParent()
270 |
271 |     private static var getParent_MethodID_14: jmethodID?
    |                        |- warning: static property 'getParent_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getParent_MethodID_14' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getParent_MethodID_14' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |
273 |     open func getParent() -> ThreadGroup! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:284:24: warning: static property 'interrupt_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
282 |     /// public final void java.lang.ThreadGroup.interrupt()
283 |
284 |     private static var interrupt_MethodID_15: jmethodID?
    |                        |- warning: static property 'interrupt_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'interrupt_MethodID_15' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'interrupt_MethodID_15' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
285 |
286 |     open func interrupt() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:295:24: warning: static property 'isDaemon_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
293 |     /// public final boolean java.lang.ThreadGroup.isDaemon()
294 |
295 |     private static var isDaemon_MethodID_16: jmethodID?
    |                        |- warning: static property 'isDaemon_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isDaemon_MethodID_16' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isDaemon_MethodID_16' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |
297 |     open func isDaemon() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:307:24: warning: static property 'isDestroyed_MethodID_17' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
305 |     /// public synchronized boolean java.lang.ThreadGroup.isDestroyed()
306 |
307 |     private static var isDestroyed_MethodID_17: jmethodID?
    |                        |- warning: static property 'isDestroyed_MethodID_17' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isDestroyed_MethodID_17' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isDestroyed_MethodID_17' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
308 |
309 |     open func isDestroyed() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:323:24: warning: static property 'list_MethodID_18' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
321 |     /// public void java.lang.ThreadGroup.list()
322 |
323 |     private static var list_MethodID_18: jmethodID?
    |                        |- warning: static property 'list_MethodID_18' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'list_MethodID_18' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'list_MethodID_18' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
324 |
325 |     open func list() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:334:24: warning: static property 'parentOf_MethodID_19' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
332 |     /// public final boolean java.lang.ThreadGroup.parentOf(java.lang.ThreadGroup)
333 |
334 |     private static var parentOf_MethodID_19: jmethodID?
    |                        |- warning: static property 'parentOf_MethodID_19' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'parentOf_MethodID_19' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'parentOf_MethodID_19' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
335 |
336 |     open func parentOf( arg0: ThreadGroup? ) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:354:24: warning: static property 'resume_MethodID_20' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
352 |     /// public final void java.lang.ThreadGroup.resume()
353 |
354 |     private static var resume_MethodID_20: jmethodID?
    |                        |- warning: static property 'resume_MethodID_20' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'resume_MethodID_20' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'resume_MethodID_20' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
355 |
356 |     open func resume() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:365:24: warning: static property 'setDaemon_MethodID_21' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
363 |     /// public final void java.lang.ThreadGroup.setDaemon(boolean)
364 |
365 |     private static var setDaemon_MethodID_21: jmethodID?
    |                        |- warning: static property 'setDaemon_MethodID_21' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'setDaemon_MethodID_21' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'setDaemon_MethodID_21' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
366 |
367 |     open func setDaemon( arg0: Bool ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:380:24: warning: static property 'setMaxPriority_MethodID_22' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
378 |     /// public final void java.lang.ThreadGroup.setMaxPriority(int)
379 |
380 |     private static var setMaxPriority_MethodID_22: jmethodID?
    |                        |- warning: static property 'setMaxPriority_MethodID_22' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'setMaxPriority_MethodID_22' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'setMaxPriority_MethodID_22' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
381 |
382 |     open func setMaxPriority( arg0: Int ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:395:24: warning: static property 'stop_MethodID_23' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
393 |     /// public final void java.lang.ThreadGroup.stop()
394 |
395 |     private static var stop_MethodID_23: jmethodID?
    |                        |- warning: static property 'stop_MethodID_23' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'stop_MethodID_23' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'stop_MethodID_23' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
396 |
397 |     open func stop() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:408:24: warning: static property 'suspend_MethodID_24' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
406 |     /// public final void java.lang.ThreadGroup.suspend()
407 |
408 |     private static var suspend_MethodID_24: jmethodID?
    |                        |- warning: static property 'suspend_MethodID_24' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'suspend_MethodID_24' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'suspend_MethodID_24' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 |
410 |     open func suspend() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadGroup.swift:431:24: warning: static property 'uncaughtException_MethodID_25' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
429 |     /// public void java.lang.ThreadGroup.uncaughtException(java.lang.Thread,java.lang.Throwable)
430 |
431 |     private static var uncaughtException_MethodID_25: jmethodID?
    |                        |- warning: static property 'uncaughtException_MethodID_25' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'uncaughtException_MethodID_25' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'uncaughtException_MethodID_25' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
432 |
433 |     open func uncaughtException( arg0: java_swift.JavaThread?, arg1: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:17:24: warning: static property 'ThreadInfoJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var ThreadInfoJNIClass: jclass?
    |                        |- warning: static property 'ThreadInfoJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'ThreadInfoJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'ThreadInfoJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// static final boolean java.lang.management.ThreadInfo.$assertionsDisabled
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:71:24: warning: static property 'from_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 69 |     /// public static java.lang.management.ThreadInfo java.lang.management.ThreadInfo.from(javax.management.openmbean.CompositeData)
 70 |
 71 |     private static var from_MethodID_1: jmethodID?
    |                        |- warning: static property 'from_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'from_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'from_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |
 73 |     open class func from( cd: /* interface javax.management.openmbean.CompositeData */ UnavailableProtocol? ) -> ThreadInfo! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:88:24: warning: static property 'getBlockedCount_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 86 |     /// public long java.lang.management.ThreadInfo.getBlockedCount()
 87 |
 88 |     private static var getBlockedCount_MethodID_2: jmethodID?
    |                        |- warning: static property 'getBlockedCount_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getBlockedCount_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getBlockedCount_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |
 90 |     open func getBlockedCount() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:100:24: warning: static property 'getBlockedTime_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 98 |     /// public long java.lang.management.ThreadInfo.getBlockedTime()
 99 |
100 |     private static var getBlockedTime_MethodID_3: jmethodID?
    |                        |- warning: static property 'getBlockedTime_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getBlockedTime_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getBlockedTime_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |
102 |     open func getBlockedTime() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:112:24: warning: static property 'getLockInfo_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
110 |     /// public java.lang.management.LockInfo java.lang.management.ThreadInfo.getLockInfo()
111 |
112 |     private static var getLockInfo_MethodID_4: jmethodID?
    |                        |- warning: static property 'getLockInfo_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockInfo_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockInfo_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 |
114 |     open func getLockInfo() -> LockInfo! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:125:24: warning: static property 'getLockName_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
123 |     /// public java.lang.String java.lang.management.ThreadInfo.getLockName()
124 |
125 |     private static var getLockName_MethodID_5: jmethodID?
    |                        |- warning: static property 'getLockName_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockName_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockName_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |     open func getLockName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:138:24: warning: static property 'getLockOwnerId_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
136 |     /// public long java.lang.management.ThreadInfo.getLockOwnerId()
137 |
138 |     private static var getLockOwnerId_MethodID_6: jmethodID?
    |                        |- warning: static property 'getLockOwnerId_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockOwnerId_MethodID_6' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockOwnerId_MethodID_6' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |
140 |     open func getLockOwnerId() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:150:24: warning: static property 'getLockOwnerName_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
148 |     /// public java.lang.String java.lang.management.ThreadInfo.getLockOwnerName()
149 |
150 |     private static var getLockOwnerName_MethodID_7: jmethodID?
    |                        |- warning: static property 'getLockOwnerName_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockOwnerName_MethodID_7' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockOwnerName_MethodID_7' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |
152 |     open func getLockOwnerName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:163:24: warning: static property 'getLockedMonitors_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
161 |     /// public java.lang.management.MonitorInfo[] java.lang.management.ThreadInfo.getLockedMonitors()
162 |
163 |     private static var getLockedMonitors_MethodID_8: jmethodID?
    |                        |- warning: static property 'getLockedMonitors_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockedMonitors_MethodID_8' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockedMonitors_MethodID_8' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 |
165 |     open func getLockedMonitors() -> [MonitorInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:175:24: warning: static property 'getLockedSynchronizers_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
173 |     /// public java.lang.management.LockInfo[] java.lang.management.ThreadInfo.getLockedSynchronizers()
174 |
175 |     private static var getLockedSynchronizers_MethodID_9: jmethodID?
    |                        |- warning: static property 'getLockedSynchronizers_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getLockedSynchronizers_MethodID_9' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getLockedSynchronizers_MethodID_9' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
176 |
177 |     open func getLockedSynchronizers() -> [LockInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:187:24: warning: static property 'getStackTrace_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
185 |     /// public java.lang.StackTraceElement[] java.lang.management.ThreadInfo.getStackTrace()
186 |
187 |     private static var getStackTrace_MethodID_10: jmethodID?
    |                        |- warning: static property 'getStackTrace_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getStackTrace_MethodID_10' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getStackTrace_MethodID_10' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 |
189 |     open func getStackTrace() -> [StackTraceElement]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:199:24: warning: static property 'getThreadId_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
197 |     /// public long java.lang.management.ThreadInfo.getThreadId()
198 |
199 |     private static var getThreadId_MethodID_11: jmethodID?
    |                        |- warning: static property 'getThreadId_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadId_MethodID_11' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadId_MethodID_11' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |
201 |     open func getThreadId() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:211:24: warning: static property 'getThreadName_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
209 |     /// public java.lang.String java.lang.management.ThreadInfo.getThreadName()
210 |
211 |     private static var getThreadName_MethodID_12: jmethodID?
    |                        |- warning: static property 'getThreadName_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadName_MethodID_12' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadName_MethodID_12' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
212 |
213 |     open func getThreadName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:224:24: warning: static property 'getThreadState_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
222 |     /// public java.lang.Thread$State java.lang.management.ThreadInfo.getThreadState()
223 |
224 |     private static var getThreadState_MethodID_13: jmethodID?
    |                        |- warning: static property 'getThreadState_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadState_MethodID_13' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadState_MethodID_13' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
225 |
226 |     open func getThreadState() -> Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:237:24: warning: static property 'getWaitedCount_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
235 |     /// public long java.lang.management.ThreadInfo.getWaitedCount()
236 |
237 |     private static var getWaitedCount_MethodID_14: jmethodID?
    |                        |- warning: static property 'getWaitedCount_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getWaitedCount_MethodID_14' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getWaitedCount_MethodID_14' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
238 |
239 |     open func getWaitedCount() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:249:24: warning: static property 'getWaitedTime_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
247 |     /// public long java.lang.management.ThreadInfo.getWaitedTime()
248 |
249 |     private static var getWaitedTime_MethodID_15: jmethodID?
    |                        |- warning: static property 'getWaitedTime_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getWaitedTime_MethodID_15' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getWaitedTime_MethodID_15' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
250 |
251 |     open func getWaitedTime() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:263:24: warning: static property 'isInNative_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
261 |     /// public boolean java.lang.management.ThreadInfo.isInNative()
262 |
263 |     private static var isInNative_MethodID_16: jmethodID?
    |                        |- warning: static property 'isInNative_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isInNative_MethodID_16' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isInNative_MethodID_16' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
264 |
265 |     open func isInNative() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadInfo.swift:275:24: warning: static property 'isSuspended_MethodID_17' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
273 |     /// public boolean java.lang.management.ThreadInfo.isSuspended()
274 |
275 |     private static var isSuspended_MethodID_17: jmethodID?
    |                        |- warning: static property 'isSuspended_MethodID_17' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isSuspended_MethodID_17' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isSuspended_MethodID_17' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
276 |
277 |     open func isSuspended() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:17:24: warning: static property 'ThreadLocalJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var ThreadLocalJNIClass: jclass?
    |                        |- warning: static property 'ThreadLocalJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'ThreadLocalJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'ThreadLocalJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// private static final int java.lang.ThreadLocal.HASH_INCREMENT
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:27:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 25 |     /// public java.lang.ThreadLocal()
 26 |
 27 |     private static var new_MethodID_1: jmethodID?
    |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:49:24: warning: static property 'withInitial_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |     /// public static java.lang.ThreadLocal java.lang.ThreadLocal.withInitial(java.util.function.Supplier)
 48 |
 49 |     private static var withInitial_MethodID_2: jmethodID?
    |                        |- warning: static property 'withInitial_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'withInitial_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'withInitial_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     open class func withInitial( supplier: /* interface java.util.function.Supplier */ UnavailableProtocol? ) -> ThreadLocal! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:74:24: warning: static property 'get_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 72 |     /// public java.lang.Object java.lang.ThreadLocal.get()
 73 |
 74 |     private static var get_MethodID_3: jmethodID?
    |                        |- warning: static property 'get_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'get_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'get_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 75 |
 76 |     open func get() -> java_swift.JavaObject! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:91:24: warning: static property 'initialValue_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 89 |     /// protected java.lang.Object java.lang.ThreadLocal.initialValue()
 90 |
 91 |     private static var initialValue_MethodID_4: jmethodID?
    |                        |- warning: static property 'initialValue_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'initialValue_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'initialValue_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |
 93 |     open func initialValue() -> java_swift.JavaObject! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:104:24: warning: static property 'remove_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
102 |     /// public void java.lang.ThreadLocal.remove()
103 |
104 |     private static var remove_MethodID_5: jmethodID?
    |                        |- warning: static property 'remove_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'remove_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'remove_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |
106 |     open func remove() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadLocal.swift:115:24: warning: static property 'set_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
113 |     /// public void java.lang.ThreadLocal.set(java.lang.Object)
114 |
115 |     private static var set_MethodID_6: jmethodID?
    |                        |- warning: static property 'set_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'set_MethodID_6' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'set_MethodID_6' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |
117 |     open func set( value: java_swift.JavaObject? ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:123:24: warning: static property 'ThreadMXBeanJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
121 | open class ThreadMXBeanForward: PlatformManagedObjectForward, ThreadMXBean {
122 |
123 |     private static var ThreadMXBeanJNIClass: jclass?
    |                        |- warning: static property 'ThreadMXBeanJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'ThreadMXBeanJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'ThreadMXBeanJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |
125 |     /// public abstract java.lang.management.ThreadInfo[] java.lang.management.ThreadMXBean.dumpAllThreads(boolean,boolean)
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:127:24: warning: static property 'dumpAllThreads_MethodID_28' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
125 |     /// public abstract java.lang.management.ThreadInfo[] java.lang.management.ThreadMXBean.dumpAllThreads(boolean,boolean)
126 |
127 |     private static var dumpAllThreads_MethodID_28: jmethodID?
    |                        |- warning: static property 'dumpAllThreads_MethodID_28' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'dumpAllThreads_MethodID_28' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'dumpAllThreads_MethodID_28' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
128 |
129 |     open func dumpAllThreads( lockedMonitors: Bool, lockedSynchronizers: Bool ) -> [ThreadInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:144:24: warning: static property 'findDeadlockedThreads_MethodID_29' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
142 |     /// public abstract long[] java.lang.management.ThreadMXBean.findDeadlockedThreads()
143 |
144 |     private static var findDeadlockedThreads_MethodID_29: jmethodID?
    |                        |- warning: static property 'findDeadlockedThreads_MethodID_29' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'findDeadlockedThreads_MethodID_29' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'findDeadlockedThreads_MethodID_29' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
145 |
146 |     open func findDeadlockedThreads() -> [Int64]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:156:24: warning: static property 'findMonitorDeadlockedThreads_MethodID_30' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
154 |     /// public abstract long[] java.lang.management.ThreadMXBean.findMonitorDeadlockedThreads()
155 |
156 |     private static var findMonitorDeadlockedThreads_MethodID_30: jmethodID?
    |                        |- warning: static property 'findMonitorDeadlockedThreads_MethodID_30' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'findMonitorDeadlockedThreads_MethodID_30' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'findMonitorDeadlockedThreads_MethodID_30' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 |     open func findMonitorDeadlockedThreads() -> [Int64]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:168:24: warning: static property 'getAllThreadIds_MethodID_31' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
166 |     /// public abstract long[] java.lang.management.ThreadMXBean.getAllThreadIds()
167 |
168 |     private static var getAllThreadIds_MethodID_31: jmethodID?
    |                        |- warning: static property 'getAllThreadIds_MethodID_31' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getAllThreadIds_MethodID_31' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getAllThreadIds_MethodID_31' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
169 |
170 |     open func getAllThreadIds() -> [Int64]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:180:24: warning: static property 'getCurrentThreadCpuTime_MethodID_32' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
178 |     /// public abstract long java.lang.management.ThreadMXBean.getCurrentThreadCpuTime()
179 |
180 |     private static var getCurrentThreadCpuTime_MethodID_32: jmethodID?
    |                        |- warning: static property 'getCurrentThreadCpuTime_MethodID_32' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getCurrentThreadCpuTime_MethodID_32' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getCurrentThreadCpuTime_MethodID_32' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 |
182 |     open func getCurrentThreadCpuTime() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:192:24: warning: static property 'getCurrentThreadUserTime_MethodID_33' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
190 |     /// public abstract long java.lang.management.ThreadMXBean.getCurrentThreadUserTime()
191 |
192 |     private static var getCurrentThreadUserTime_MethodID_33: jmethodID?
    |                        |- warning: static property 'getCurrentThreadUserTime_MethodID_33' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getCurrentThreadUserTime_MethodID_33' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getCurrentThreadUserTime_MethodID_33' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
193 |
194 |     open func getCurrentThreadUserTime() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:204:24: warning: static property 'getDaemonThreadCount_MethodID_34' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
202 |     /// public abstract int java.lang.management.ThreadMXBean.getDaemonThreadCount()
203 |
204 |     private static var getDaemonThreadCount_MethodID_34: jmethodID?
    |                        |- warning: static property 'getDaemonThreadCount_MethodID_34' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getDaemonThreadCount_MethodID_34' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getDaemonThreadCount_MethodID_34' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
205 |
206 |     open func getDaemonThreadCount() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:220:24: warning: static property 'getPeakThreadCount_MethodID_35' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
218 |     /// public abstract int java.lang.management.ThreadMXBean.getPeakThreadCount()
219 |
220 |     private static var getPeakThreadCount_MethodID_35: jmethodID?
    |                        |- warning: static property 'getPeakThreadCount_MethodID_35' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getPeakThreadCount_MethodID_35' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getPeakThreadCount_MethodID_35' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 |
222 |     open func getPeakThreadCount() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:232:24: warning: static property 'getThreadCount_MethodID_36' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
230 |     /// public abstract int java.lang.management.ThreadMXBean.getThreadCount()
231 |
232 |     private static var getThreadCount_MethodID_36: jmethodID?
    |                        |- warning: static property 'getThreadCount_MethodID_36' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadCount_MethodID_36' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadCount_MethodID_36' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
233 |
234 |     open func getThreadCount() -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:244:24: warning: static property 'getThreadCpuTime_MethodID_37' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
242 |     /// public abstract long java.lang.management.ThreadMXBean.getThreadCpuTime(long)
243 |
244 |     private static var getThreadCpuTime_MethodID_37: jmethodID?
    |                        |- warning: static property 'getThreadCpuTime_MethodID_37' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadCpuTime_MethodID_37' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadCpuTime_MethodID_37' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
245 |
246 |     open func getThreadCpuTime( id: Int64 ) -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:260:24: warning: static property 'getThreadInfo_MethodID_38' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
258 |     /// public abstract java.lang.management.ThreadInfo java.lang.management.ThreadMXBean.getThreadInfo(long)
259 |
260 |     private static var getThreadInfo_MethodID_38: jmethodID?
    |                        |- warning: static property 'getThreadInfo_MethodID_38' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadInfo_MethodID_38' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadInfo_MethodID_38' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
261 |
262 |     open func getThreadInfo( id: Int64 ) -> ThreadInfo! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:277:24: warning: static property 'getThreadInfo_MethodID_39' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
275 |     /// public abstract java.lang.management.ThreadInfo java.lang.management.ThreadMXBean.getThreadInfo(long,int)
276 |
277 |     private static var getThreadInfo_MethodID_39: jmethodID?
    |                        |- warning: static property 'getThreadInfo_MethodID_39' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadInfo_MethodID_39' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadInfo_MethodID_39' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
278 |
279 |     open func getThreadInfo( id: Int64, maxDepth: Int ) -> ThreadInfo! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:295:24: warning: static property 'getThreadInfo_MethodID_40' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
293 |     /// public abstract java.lang.management.ThreadInfo[] java.lang.management.ThreadMXBean.getThreadInfo(long[])
294 |
295 |     private static var getThreadInfo_MethodID_40: jmethodID?
    |                        |- warning: static property 'getThreadInfo_MethodID_40' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadInfo_MethodID_40' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadInfo_MethodID_40' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 |
297 |     open func getThreadInfo( ids: [Int64]? ) -> [ThreadInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:311:24: warning: static property 'getThreadInfo_MethodID_41' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
309 |     /// public abstract java.lang.management.ThreadInfo[] java.lang.management.ThreadMXBean.getThreadInfo(long[],boolean,boolean)
310 |
311 |     private static var getThreadInfo_MethodID_41: jmethodID?
    |                        |- warning: static property 'getThreadInfo_MethodID_41' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadInfo_MethodID_41' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadInfo_MethodID_41' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
312 |
313 |     open func getThreadInfo( ids: [Int64]?, lockedMonitors: Bool, lockedSynchronizers: Bool ) -> [ThreadInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:329:24: warning: static property 'getThreadInfo_MethodID_42' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
327 |     /// public abstract java.lang.management.ThreadInfo[] java.lang.management.ThreadMXBean.getThreadInfo(long[],int)
328 |
329 |     private static var getThreadInfo_MethodID_42: jmethodID?
    |                        |- warning: static property 'getThreadInfo_MethodID_42' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadInfo_MethodID_42' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadInfo_MethodID_42' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
330 |
331 |     open func getThreadInfo( ids: [Int64]?, maxDepth: Int ) -> [ThreadInfo]! {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:346:24: warning: static property 'getThreadUserTime_MethodID_43' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
344 |     /// public abstract long java.lang.management.ThreadMXBean.getThreadUserTime(long)
345 |
346 |     private static var getThreadUserTime_MethodID_43: jmethodID?
    |                        |- warning: static property 'getThreadUserTime_MethodID_43' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getThreadUserTime_MethodID_43' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getThreadUserTime_MethodID_43' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
347 |
348 |     open func getThreadUserTime( id: Int64 ) -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:362:24: warning: static property 'getTotalStartedThreadCount_MethodID_44' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
360 |     /// public abstract long java.lang.management.ThreadMXBean.getTotalStartedThreadCount()
361 |
362 |     private static var getTotalStartedThreadCount_MethodID_44: jmethodID?
    |                        |- warning: static property 'getTotalStartedThreadCount_MethodID_44' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getTotalStartedThreadCount_MethodID_44' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getTotalStartedThreadCount_MethodID_44' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 |
364 |     open func getTotalStartedThreadCount() -> Int64 {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:374:24: warning: static property 'isCurrentThreadCpuTimeSupported_MethodID_45' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
372 |     /// public abstract boolean java.lang.management.ThreadMXBean.isCurrentThreadCpuTimeSupported()
373 |
374 |     private static var isCurrentThreadCpuTimeSupported_MethodID_45: jmethodID?
    |                        |- warning: static property 'isCurrentThreadCpuTimeSupported_MethodID_45' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isCurrentThreadCpuTimeSupported_MethodID_45' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isCurrentThreadCpuTimeSupported_MethodID_45' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
375 |
376 |     open func isCurrentThreadCpuTimeSupported() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:386:24: warning: static property 'isObjectMonitorUsageSupported_MethodID_46' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
384 |     /// public abstract boolean java.lang.management.ThreadMXBean.isObjectMonitorUsageSupported()
385 |
386 |     private static var isObjectMonitorUsageSupported_MethodID_46: jmethodID?
    |                        |- warning: static property 'isObjectMonitorUsageSupported_MethodID_46' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isObjectMonitorUsageSupported_MethodID_46' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isObjectMonitorUsageSupported_MethodID_46' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
387 |
388 |     open func isObjectMonitorUsageSupported() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:398:24: warning: static property 'isSynchronizerUsageSupported_MethodID_47' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
396 |     /// public abstract boolean java.lang.management.ThreadMXBean.isSynchronizerUsageSupported()
397 |
398 |     private static var isSynchronizerUsageSupported_MethodID_47: jmethodID?
    |                        |- warning: static property 'isSynchronizerUsageSupported_MethodID_47' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isSynchronizerUsageSupported_MethodID_47' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isSynchronizerUsageSupported_MethodID_47' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
399 |
400 |     open func isSynchronizerUsageSupported() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:410:24: warning: static property 'isThreadContentionMonitoringEnabled_MethodID_48' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
408 |     /// public abstract boolean java.lang.management.ThreadMXBean.isThreadContentionMonitoringEnabled()
409 |
410 |     private static var isThreadContentionMonitoringEnabled_MethodID_48: jmethodID?
    |                        |- warning: static property 'isThreadContentionMonitoringEnabled_MethodID_48' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isThreadContentionMonitoringEnabled_MethodID_48' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isThreadContentionMonitoringEnabled_MethodID_48' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
411 |
412 |     open func isThreadContentionMonitoringEnabled() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:422:24: warning: static property 'isThreadContentionMonitoringSupported_MethodID_49' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
420 |     /// public abstract boolean java.lang.management.ThreadMXBean.isThreadContentionMonitoringSupported()
421 |
422 |     private static var isThreadContentionMonitoringSupported_MethodID_49: jmethodID?
    |                        |- warning: static property 'isThreadContentionMonitoringSupported_MethodID_49' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isThreadContentionMonitoringSupported_MethodID_49' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isThreadContentionMonitoringSupported_MethodID_49' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
423 |
424 |     open func isThreadContentionMonitoringSupported() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:434:24: warning: static property 'isThreadCpuTimeEnabled_MethodID_50' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
432 |     /// public abstract boolean java.lang.management.ThreadMXBean.isThreadCpuTimeEnabled()
433 |
434 |     private static var isThreadCpuTimeEnabled_MethodID_50: jmethodID?
    |                        |- warning: static property 'isThreadCpuTimeEnabled_MethodID_50' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isThreadCpuTimeEnabled_MethodID_50' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isThreadCpuTimeEnabled_MethodID_50' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
435 |
436 |     open func isThreadCpuTimeEnabled() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:446:24: warning: static property 'isThreadCpuTimeSupported_MethodID_51' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
444 |     /// public abstract boolean java.lang.management.ThreadMXBean.isThreadCpuTimeSupported()
445 |
446 |     private static var isThreadCpuTimeSupported_MethodID_51: jmethodID?
    |                        |- warning: static property 'isThreadCpuTimeSupported_MethodID_51' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isThreadCpuTimeSupported_MethodID_51' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isThreadCpuTimeSupported_MethodID_51' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
447 |
448 |     open func isThreadCpuTimeSupported() -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:458:24: warning: static property 'resetPeakThreadCount_MethodID_52' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
456 |     /// public abstract void java.lang.management.ThreadMXBean.resetPeakThreadCount()
457 |
458 |     private static var resetPeakThreadCount_MethodID_52: jmethodID?
    |                        |- warning: static property 'resetPeakThreadCount_MethodID_52' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'resetPeakThreadCount_MethodID_52' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'resetPeakThreadCount_MethodID_52' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
459 |
460 |     open func resetPeakThreadCount() {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:469:24: warning: static property 'setThreadContentionMonitoringEnabled_MethodID_53' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
467 |     /// public abstract void java.lang.management.ThreadMXBean.setThreadContentionMonitoringEnabled(boolean)
468 |
469 |     private static var setThreadContentionMonitoringEnabled_MethodID_53: jmethodID?
    |                        |- warning: static property 'setThreadContentionMonitoringEnabled_MethodID_53' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'setThreadContentionMonitoringEnabled_MethodID_53' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'setThreadContentionMonitoringEnabled_MethodID_53' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
470 |
471 |     open func setThreadContentionMonitoringEnabled( enable: Bool ) {
/Users/admin/builder/spi-builder-workspace/Sources/ThreadMXBean.swift:484:24: warning: static property 'setThreadCpuTimeEnabled_MethodID_54' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
482 |     /// public abstract void java.lang.management.ThreadMXBean.setThreadCpuTimeEnabled(boolean)
483 |
484 |     private static var setThreadCpuTimeEnabled_MethodID_54: jmethodID?
    |                        |- warning: static property 'setThreadCpuTimeEnabled_MethodID_54' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'setThreadCpuTimeEnabled_MethodID_54' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'setThreadCpuTimeEnabled_MethodID_54' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 |
486 |     open func setThreadCpuTimeEnabled( enable: Bool ) {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:12:16: warning: static property 'enumConstants' is not concurrency-safe because non-'Sendable' type '[Thread_StateForward]' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |     case NEW, RUNNABLE, BLOCKED, WAITING, TIMED_WAITING, TERMINATED
 11 |
 12 |     static let enumConstants = JavaClass(loading: "java.lang.Thread$State")
    |                |- warning: static property 'enumConstants' is not concurrency-safe because non-'Sendable' type '[Thread_StateForward]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'enumConstants' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |         .getEnumConstants()!.map { Thread_StateForward( javaObject: $0.javaObject ) }
 14 |
    :
 47 |
 48 |
 49 | open class Thread_StateForward: JNIObjectForward {
    |            `- note: class 'Thread_StateForward' does not conform to the 'Sendable' protocol
 50 |
 51 |     private static var Thread_StateJNIClass: jclass?
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:29:24: warning: static property 'valueOf_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     /// public static java.lang.Thread$State java.lang.Thread$State.valueOf(java.lang.String)
 28 |
 29 |     private static var valueOf_MethodID_1: jmethodID?
    |                        |- warning: static property 'valueOf_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'valueOf_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'valueOf_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |
 31 |     public static func valueOf( name: String? ) -> Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:40:24: warning: static property 'values_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |     /// public static java.lang.Thread$State[] java.lang.Thread$State.values()
 39 |
 40 |     private static var values_MethodID_2: jmethodID?
    |                        |- warning: static property 'values_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'values_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'values_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     public static func values() -> [Thread_State]! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:51:24: warning: static property 'Thread_StateJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | open class Thread_StateForward: JNIObjectForward {
 50 |
 51 |     private static var Thread_StateJNIClass: jclass?
    |                        |- warning: static property 'Thread_StateJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'Thread_StateJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'Thread_StateJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// private static final java.lang.Thread$State[] java.lang.Thread$State.$VALUES
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:57:24: warning: static property 'BLOCKED_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 55 |     /// public static final java.lang.Thread$State java.lang.Thread$State.BLOCKED
 56 |
 57 |     private static var BLOCKED_FieldID: jfieldID?
    |                        |- warning: static property 'BLOCKED_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'BLOCKED_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'BLOCKED_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |
 59 |     public static var BLOCKED: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:69:24: warning: static property 'NEW_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 67 |     /// public static final java.lang.Thread$State java.lang.Thread$State.NEW
 68 |
 69 |     private static var NEW_FieldID: jfieldID?
    |                        |- warning: static property 'NEW_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'NEW_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'NEW_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |
 71 |     public static var NEW: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:81:24: warning: static property 'RUNNABLE_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 79 |     /// public static final java.lang.Thread$State java.lang.Thread$State.RUNNABLE
 80 |
 81 |     private static var RUNNABLE_FieldID: jfieldID?
    |                        |- warning: static property 'RUNNABLE_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'RUNNABLE_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'RUNNABLE_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |
 83 |     public static var RUNNABLE: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:93:24: warning: static property 'TERMINATED_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 91 |     /// public static final java.lang.Thread$State java.lang.Thread$State.TERMINATED
 92 |
 93 |     private static var TERMINATED_FieldID: jfieldID?
    |                        |- warning: static property 'TERMINATED_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'TERMINATED_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'TERMINATED_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |
 95 |     public static var TERMINATED: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:105:24: warning: static property 'TIMED_WAITING_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
103 |     /// public static final java.lang.Thread$State java.lang.Thread$State.TIMED_WAITING
104 |
105 |     private static var TIMED_WAITING_FieldID: jfieldID?
    |                        |- warning: static property 'TIMED_WAITING_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'TIMED_WAITING_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'TIMED_WAITING_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 |     public static var TIMED_WAITING: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:117:24: warning: static property 'WAITING_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
115 |     /// public static final java.lang.Thread$State java.lang.Thread$State.WAITING
116 |
117 |     private static var WAITING_FieldID: jfieldID?
    |                        |- warning: static property 'WAITING_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'WAITING_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'WAITING_FieldID' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |
119 |     public static var WAITING: Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:129:24: warning: static property 'valueOf_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
127 |     /// public static java.lang.Thread$State java.lang.Thread$State.valueOf(java.lang.String)
128 |
129 |     private static var valueOf_MethodID_3: jmethodID?
    |                        |- warning: static property 'valueOf_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'valueOf_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'valueOf_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |
131 |     open class func valueOf( name: String? ) -> Thread_State! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:146:24: warning: static property 'valueOf_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
144 |     /// public static java.lang.Enum java.lang.Enum.valueOf(java.lang.Class,java.lang.String)
145 |
146 |     private static var valueOf_MethodID_4: jmethodID?
    |                        |- warning: static property 'valueOf_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'valueOf_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'valueOf_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |
148 |     open class func valueOf( enumType: java_swift.JavaClass?, name: String? ) -> java_swift.JavaEnum! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_State.swift:164:24: warning: static property 'values_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
162 |     /// public static java.lang.Thread$State[] java.lang.Thread$State.values()
163 |
164 |     private static var values_MethodID_5: jmethodID?
    |                        |- warning: static property 'values_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'values_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'values_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |
166 |     open class func values() -> [Thread_State]! {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_UncaughtExceptionHandler.swift:19:24: warning: static property 'Thread_UncaughtExceptionHandlerJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 | open class Thread_UncaughtExceptionHandlerForward: JNIObjectForward, Thread_UncaughtExceptionHandler {
18 |
19 |     private static var Thread_UncaughtExceptionHandlerJNIClass: jclass?
   |                        |- warning: static property 'Thread_UncaughtExceptionHandlerJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'Thread_UncaughtExceptionHandlerJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'Thread_UncaughtExceptionHandlerJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     /// public abstract void java.lang.Thread$UncaughtExceptionHandler.uncaughtException(java.lang.Thread,java.lang.Throwable)
/Users/admin/builder/spi-builder-workspace/Sources/Thread_UncaughtExceptionHandler.swift:23:24: warning: static property 'uncaughtException_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 |     /// public abstract void java.lang.Thread$UncaughtExceptionHandler.uncaughtException(java.lang.Thread,java.lang.Throwable)
22 |
23 |     private static var uncaughtException_MethodID_2: jmethodID?
   |                        |- warning: static property 'uncaughtException_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'uncaughtException_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'uncaughtException_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     open func uncaughtException( arg0: java_swift.JavaThread?, arg1: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/Thread_UncaughtExceptionHandler.swift:47:28: warning: static property '_proxyClass' is not concurrency-safe because non-'Sendable' type 'jclass' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
45 | fileprivate class Thread_UncaughtExceptionHandlerLocal_: JNILocalProxy<Thread_UncaughtExceptionHandler, Any> {
46 |
47 |     fileprivate static let _proxyClass: jclass = {
   |                            |- warning: static property '_proxyClass' is not concurrency-safe because non-'Sendable' type 'jclass' (aka 'OpaquePointer') may have shared mutable state; this is an error in the Swift 6 language mode
   |                            |- note: annotate '_proxyClass' with '@MainActor' if property should only be accessed from the main actor
   |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |         var natives = [JNINativeMethod]()
49 |
Swift.OpaquePointer:1:23: note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
1 | @frozen public struct OpaquePointer {
  |                       `- note: struct 'OpaquePointer' does not conform to the 'Sendable' protocol
2 | }
/Users/admin/builder/spi-builder-workspace/Sources/Type.swift:19:24: warning: static property 'TypeJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
17 | open class TypeForward: JNIObjectForward, Type {
18 |
19 |     private static var TypeJNIClass: jclass?
   |                        |- warning: static property 'TypeJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'TypeJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'TypeJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |     /// public default java.lang.String java.lang.reflect.Type.getTypeName()
/Users/admin/builder/spi-builder-workspace/Sources/Type.swift:23:24: warning: static property 'getTypeName_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 |     /// public default java.lang.String java.lang.reflect.Type.getTypeName()
22 |
23 |     private static var getTypeName_MethodID_2: jmethodID?
   |                        |- warning: static property 'getTypeName_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'getTypeName_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'getTypeName_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     open func getTypeName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeNotPresentException.swift:17:24: warning: static property 'TypeNotPresentExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var TypeNotPresentExceptionJNIClass: jclass?
   |                        |- warning: static property 'TypeNotPresentExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'TypeNotPresentExceptionJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'TypeNotPresentExceptionJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.TypeNotPresentException.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/TypeNotPresentException.swift:61:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     /// public java.lang.TypeNotPresentException(java.lang.String,java.lang.Throwable)
60 |
61 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 |
63 |     public convenience init( typeName: String?, cause: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/TypeNotPresentException.swift:79:24: warning: static property 'typeName_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
77 |     /// public java.lang.String java.lang.TypeNotPresentException.typeName()
78 |
79 |     private static var typeName_MethodID_2: jmethodID?
   |                        |- warning: static property 'typeName_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'typeName_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'typeName_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 |
81 |     open func typeName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeNotPresentException.swift:8:12: warning: class 'TypeNotPresentException' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.TypeNotPresentException ///
 7 |
 8 | open class TypeNotPresentException: RuntimeException {
   |            `- warning: class 'TypeNotPresentException' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:31:24: warning: static property 'TypeVariableJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 29 | open class TypeVariableForward: TypeForward, TypeVariable {
 30 |
 31 |     private static var TypeVariableJNIClass: jclass?
    |                        |- warning: static property 'TypeVariableJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'TypeVariableJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'TypeVariableJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// public abstract java.lang.reflect.AnnotatedType[] java.lang.reflect.TypeVariable.getAnnotatedBounds()
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:35:24: warning: static property 'getAnnotatedBounds_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 33 |     /// public abstract java.lang.reflect.AnnotatedType[] java.lang.reflect.TypeVariable.getAnnotatedBounds()
 34 |
 35 |     private static var getAnnotatedBounds_MethodID_5: jmethodID?
    |                        |- warning: static property 'getAnnotatedBounds_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getAnnotatedBounds_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getAnnotatedBounds_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |
 37 |     open func getAnnotatedBounds() -> [AnnotatedType]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:47:24: warning: static property 'getAnnotation_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 45 |     /// public abstract java.lang.annotation.Annotation java.lang.reflect.AnnotatedElement.getAnnotation(java.lang.Class)
 46 |
 47 |     private static var getAnnotation_MethodID_6: jmethodID?
    |                        |- warning: static property 'getAnnotation_MethodID_6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getAnnotation_MethodID_6' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getAnnotation_MethodID_6' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |
 49 |     open func getAnnotation( arg0: java_swift.JavaClass? ) -> Annotation! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:64:24: warning: static property 'getAnnotations_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 62 |     /// public abstract java.lang.annotation.Annotation[] java.lang.reflect.AnnotatedElement.getAnnotations()
 63 |
 64 |     private static var getAnnotations_MethodID_7: jmethodID?
    |                        |- warning: static property 'getAnnotations_MethodID_7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getAnnotations_MethodID_7' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getAnnotations_MethodID_7' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |
 66 |     open func getAnnotations() -> [Annotation]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:76:24: warning: static property 'getAnnotationsByType_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 74 |     /// public default java.lang.annotation.Annotation[] java.lang.reflect.AnnotatedElement.getAnnotationsByType(java.lang.Class)
 75 |
 76 |     private static var getAnnotationsByType_MethodID_8: jmethodID?
    |                        |- warning: static property 'getAnnotationsByType_MethodID_8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getAnnotationsByType_MethodID_8' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getAnnotationsByType_MethodID_8' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |
 78 |     open func getAnnotationsByType( arg0: java_swift.JavaClass? ) -> [Annotation]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:92:24: warning: static property 'getBounds_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 90 |     /// public abstract java.lang.reflect.Type[] java.lang.reflect.TypeVariable.getBounds()
 91 |
 92 |     private static var getBounds_MethodID_9: jmethodID?
    |                        |- warning: static property 'getBounds_MethodID_9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getBounds_MethodID_9' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getBounds_MethodID_9' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |
 94 |     open func getBounds() -> [Type]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:104:24: warning: static property 'getDeclaredAnnotation_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
102 |     /// public default java.lang.annotation.Annotation java.lang.reflect.AnnotatedElement.getDeclaredAnnotation(java.lang.Class)
103 |
104 |     private static var getDeclaredAnnotation_MethodID_10: jmethodID?
    |                        |- warning: static property 'getDeclaredAnnotation_MethodID_10' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getDeclaredAnnotation_MethodID_10' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getDeclaredAnnotation_MethodID_10' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |
106 |     open func getDeclaredAnnotation( arg0: java_swift.JavaClass? ) -> Annotation! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:121:24: warning: static property 'getDeclaredAnnotations_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
119 |     /// public abstract java.lang.annotation.Annotation[] java.lang.reflect.AnnotatedElement.getDeclaredAnnotations()
120 |
121 |     private static var getDeclaredAnnotations_MethodID_11: jmethodID?
    |                        |- warning: static property 'getDeclaredAnnotations_MethodID_11' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getDeclaredAnnotations_MethodID_11' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getDeclaredAnnotations_MethodID_11' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |
123 |     open func getDeclaredAnnotations() -> [Annotation]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:133:24: warning: static property 'getDeclaredAnnotationsByType_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
131 |     /// public default java.lang.annotation.Annotation[] java.lang.reflect.AnnotatedElement.getDeclaredAnnotationsByType(java.lang.Class)
132 |
133 |     private static var getDeclaredAnnotationsByType_MethodID_12: jmethodID?
    |                        |- warning: static property 'getDeclaredAnnotationsByType_MethodID_12' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getDeclaredAnnotationsByType_MethodID_12' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getDeclaredAnnotationsByType_MethodID_12' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 |
135 |     open func getDeclaredAnnotationsByType( arg0: java_swift.JavaClass? ) -> [Annotation]! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:149:24: warning: static property 'getGenericDeclaration_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
147 |     /// public abstract java.lang.reflect.GenericDeclaration java.lang.reflect.TypeVariable.getGenericDeclaration()
148 |
149 |     private static var getGenericDeclaration_MethodID_13: jmethodID?
    |                        |- warning: static property 'getGenericDeclaration_MethodID_13' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getGenericDeclaration_MethodID_13' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getGenericDeclaration_MethodID_13' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
150 |
151 |     open func getGenericDeclaration() -> GenericDeclaration! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:162:24: warning: static property 'getName_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
160 |     /// public abstract java.lang.String java.lang.reflect.TypeVariable.getName()
161 |
162 |     private static var getName_MethodID_14: jmethodID?
    |                        |- warning: static property 'getName_MethodID_14' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getName_MethodID_14' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getName_MethodID_14' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 |
164 |     open func getName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:175:24: warning: static property 'getTypeName_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
173 |     /// public default java.lang.String java.lang.reflect.Type.getTypeName()
174 |
175 |     private static var getTypeName_MethodID_15: jmethodID?
    |                        |- warning: static property 'getTypeName_MethodID_15' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getTypeName_MethodID_15' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getTypeName_MethodID_15' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
176 |
177 |     override open func getTypeName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/TypeVariable.swift:188:24: warning: static property 'isAnnotationPresent_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
186 |     /// public default boolean java.lang.reflect.AnnotatedElement.isAnnotationPresent(java.lang.Class)
187 |
188 |     private static var isAnnotationPresent_MethodID_16: jmethodID?
    |                        |- warning: static property 'isAnnotationPresent_MethodID_16' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'isAnnotationPresent_MethodID_16' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'isAnnotationPresent_MethodID_16' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
189 |
190 |     open func isAnnotationPresent( arg0: java_swift.JavaClass? ) -> Bool {
/Users/admin/builder/spi-builder-workspace/Sources/UndeclaredThrowableException.swift:17:24: warning: static property 'UndeclaredThrowableExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var UndeclaredThrowableExceptionJNIClass: jclass?
    |                        |- warning: static property 'UndeclaredThrowableExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'UndeclaredThrowableExceptionJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'UndeclaredThrowableExceptionJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// static final long java.lang.reflect.UndeclaredThrowableException.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UndeclaredThrowableException.swift:63:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 61 |     /// public java.lang.reflect.UndeclaredThrowableException(java.lang.Throwable)
 62 |
 63 |     private static var new_MethodID_1: jmethodID?
    |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |     public convenience init( undeclaredThrowable: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UndeclaredThrowableException.swift:80:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 78 |     /// public java.lang.reflect.UndeclaredThrowableException(java.lang.Throwable,java.lang.String)
 79 |
 80 |     private static var new_MethodID_2: jmethodID?
    |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |
 82 |     public convenience init( undeclaredThrowable: java_swift.Throwable?, s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UndeclaredThrowableException.swift:102:24: warning: static property 'getUndeclaredThrowable_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
100 |     /// public java.lang.Throwable java.lang.reflect.UndeclaredThrowableException.getUndeclaredThrowable()
101 |
102 |     private static var getUndeclaredThrowable_MethodID_3: jmethodID?
    |                        |- warning: static property 'getUndeclaredThrowable_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'getUndeclaredThrowable_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'getUndeclaredThrowable_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |
104 |     open func getUndeclaredThrowable() -> java_swift.Throwable! {
/Users/admin/builder/spi-builder-workspace/Sources/UndeclaredThrowableException.swift:8:12: warning: class 'UndeclaredThrowableException' must restate inherited '@unchecked Sendable' conformance
  6 | /// class java.lang.reflect.UndeclaredThrowableException ///
  7 |
  8 | open class UndeclaredThrowableException: RuntimeException {
    |            `- warning: class 'UndeclaredThrowableException' must restate inherited '@unchecked Sendable' conformance
  9 |
 10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnknownError.swift:17:24: warning: static property 'UnknownErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var UnknownErrorJNIClass: jclass?
   |                        |- warning: static property 'UnknownErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'UnknownErrorJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'UnknownErrorJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.UnknownError.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UnknownError.swift:57:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
55 |     /// public java.lang.UnknownError()
56 |
57 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/UnknownError.swift:69:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |     /// public java.lang.UnknownError(java.lang.String)
68 |
69 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnknownError.swift:8:12: warning: class 'UnknownError' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.UnknownError ///
 7 |
 8 | open class UnknownError: VirtualMachineError {
   |            `- warning: class 'UnknownError' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnmodifiableClassException.swift:17:24: warning: static property 'UnmodifiableClassExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var UnmodifiableClassExceptionJNIClass: jclass?
   |                        |- warning: static property 'UnmodifiableClassExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'UnmodifiableClassExceptionJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'UnmodifiableClassExceptionJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.instrument.UnmodifiableClassException.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UnmodifiableClassException.swift:55:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
53 |     /// public java.lang.instrument.UnmodifiableClassException()
54 |
55 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 |
57 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/UnmodifiableClassException.swift:67:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
65 |     /// public java.lang.instrument.UnmodifiableClassException(java.lang.String)
66 |
67 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 |
69 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnmodifiableClassException.swift:8:12: warning: class 'UnmodifiableClassException' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.instrument.UnmodifiableClassException ///
 7 |
 8 | open class UnmodifiableClassException: java_swift.Exception {
   |            `- warning: class 'UnmodifiableClassException' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsatisfiedLinkError.swift:17:24: warning: static property 'UnsatisfiedLinkErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var UnsatisfiedLinkErrorJNIClass: jclass?
   |                        |- warning: static property 'UnsatisfiedLinkErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'UnsatisfiedLinkErrorJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'UnsatisfiedLinkErrorJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.UnsatisfiedLinkError.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UnsatisfiedLinkError.swift:57:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
55 |     /// public java.lang.UnsatisfiedLinkError()
56 |
57 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/UnsatisfiedLinkError.swift:69:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |     /// public java.lang.UnsatisfiedLinkError(java.lang.String)
68 |
69 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsatisfiedLinkError.swift:8:12: warning: class 'UnsatisfiedLinkError' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.UnsatisfiedLinkError ///
 7 |
 8 | open class UnsatisfiedLinkError: LinkageError {
   |            `- warning: class 'UnsatisfiedLinkError' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedClassVersionError.swift:17:24: warning: static property 'UnsupportedClassVersionErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var UnsupportedClassVersionErrorJNIClass: jclass?
   |                        |- warning: static property 'UnsupportedClassVersionErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'UnsupportedClassVersionErrorJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'UnsupportedClassVersionErrorJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.UnsupportedClassVersionError.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedClassVersionError.swift:59:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
57 |     /// public java.lang.UnsupportedClassVersionError()
58 |
59 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |
61 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedClassVersionError.swift:71:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
69 |     /// public java.lang.UnsupportedClassVersionError(java.lang.String)
70 |
71 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedClassVersionError.swift:8:12: warning: class 'UnsupportedClassVersionError' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.UnsupportedClassVersionError ///
 7 |
 8 | open class UnsupportedClassVersionError: ClassFormatError {
   |            `- warning: class 'UnsupportedClassVersionError' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:17:24: warning: static property 'UnsupportedOperationExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var UnsupportedOperationExceptionJNIClass: jclass?
    |                        |- warning: static property 'UnsupportedOperationExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'UnsupportedOperationExceptionJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'UnsupportedOperationExceptionJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// static final long java.lang.UnsupportedOperationException.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:61:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 59 |     /// public java.lang.UnsupportedOperationException()
 60 |
 61 |     private static var new_MethodID_1: jmethodID?
    |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |
 63 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:73:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 71 |     /// public java.lang.UnsupportedOperationException(java.lang.String)
 72 |
 73 |     private static var new_MethodID_2: jmethodID?
    |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     public convenience init( message: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:90:24: warning: static property 'new_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 88 |     /// public java.lang.UnsupportedOperationException(java.lang.String,java.lang.Throwable)
 89 |
 90 |     private static var new_MethodID_3: jmethodID?
    |                        |- warning: static property 'new_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 91 |
 92 |     public convenience init( message: String?, cause: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:108:24: warning: static property 'new_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
106 |     /// public java.lang.UnsupportedOperationException(java.lang.Throwable)
107 |
108 |     private static var new_MethodID_4: jmethodID?
    |                        |- warning: static property 'new_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |
110 |     public convenience init( cause: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/UnsupportedOperationException.swift:8:12: warning: class 'UnsupportedOperationException' must restate inherited '@unchecked Sendable' conformance
  6 | /// class java.lang.UnsupportedOperationException ///
  7 |
  8 | open class UnsupportedOperationException: RuntimeException {
    |            `- warning: class 'UnsupportedOperationException' must restate inherited '@unchecked Sendable' conformance
  9 |
 10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/VerifyError.swift:17:24: warning: static property 'VerifyErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var VerifyErrorJNIClass: jclass?
   |                        |- warning: static property 'VerifyErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'VerifyErrorJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'VerifyErrorJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.VerifyError.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/VerifyError.swift:57:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
55 |     /// public java.lang.VerifyError()
56 |
57 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/VerifyError.swift:69:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
67 |     /// public java.lang.VerifyError(java.lang.String)
68 |
69 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 |
71 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VerifyError.swift:8:12: warning: class 'VerifyError' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.VerifyError ///
 7 |
 8 | open class VerifyError: LinkageError {
   |            `- warning: class 'VerifyError' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:17:24: warning: static property 'VirtualMachineErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |     }
 16 |
 17 |     private static var VirtualMachineErrorJNIClass: jclass?
    |                        |- warning: static property 'VirtualMachineErrorJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'VirtualMachineErrorJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'VirtualMachineErrorJNIClass' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// private static final long java.lang.VirtualMachineError.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:55:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 53 |     /// public java.lang.VirtualMachineError()
 54 |
 55 |     private static var new_MethodID_1: jmethodID?
    |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |
 57 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:67:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 65 |     /// public java.lang.VirtualMachineError(java.lang.String)
 66 |
 67 |     private static var new_MethodID_2: jmethodID?
    |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |
 69 |     public convenience init( arg0: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:84:24: warning: static property 'new_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 82 |     /// public java.lang.VirtualMachineError(java.lang.String,java.lang.Throwable)
 83 |
 84 |     private static var new_MethodID_3: jmethodID?
    |                        |- warning: static property 'new_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |
 86 |     public convenience init( arg0: String?, arg1: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:102:24: warning: static property 'new_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
100 |     /// public java.lang.VirtualMachineError(java.lang.Throwable)
101 |
102 |     private static var new_MethodID_4: jmethodID?
    |                        |- warning: static property 'new_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'new_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'new_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |
104 |     public convenience init( arg0: java_swift.Throwable? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VirtualMachineError.swift:8:12: warning: class 'VirtualMachineError' must restate inherited '@unchecked Sendable' conformance
  6 | /// class java.lang.VirtualMachineError ///
  7 |
  8 | open class VirtualMachineError: JavaError {
    |            `- warning: class 'VirtualMachineError' must restate inherited '@unchecked Sendable' conformance
  9 |
 10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/Void.swift:17:24: warning: static property 'VoidJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var VoidJNIClass: jclass?
   |                        |- warning: static property 'VoidJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'VoidJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'VoidJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// public static final java.lang.Class java.lang.Void.TYPE
/Users/admin/builder/spi-builder-workspace/Sources/Void.swift:21:24: warning: static property 'TYPE_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
19 |     /// public static final java.lang.Class java.lang.Void.TYPE
20 |
21 |     private static var TYPE_FieldID: jfieldID?
   |                        |- warning: static property 'TYPE_FieldID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'TYPE_FieldID' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'TYPE_FieldID' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 |     public static var TYPE: java_swift.JavaClass! {
/Users/admin/builder/spi-builder-workspace/Sources/VolatileCallSite.swift:17:24: warning: static property 'VolatileCallSiteJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var VolatileCallSiteJNIClass: jclass?
   |                        |- warning: static property 'VolatileCallSiteJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'VolatileCallSiteJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'VolatileCallSiteJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final java.lang.invoke.MethodHandle java.lang.invoke.CallSite.GET_TARGET
/Users/admin/builder/spi-builder-workspace/Sources/VolatileCallSite.swift:31:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
29 |     /// public java.lang.invoke.VolatileCallSite(java.lang.invoke.MethodHandle)
30 |
31 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 |     public convenience init( target: MethodHandle? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VolatileCallSite.swift:48:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
46 |     /// public java.lang.invoke.VolatileCallSite(java.lang.invoke.MethodType)
47 |
48 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 |     public convenience init( type: MethodType? ) {
/Users/admin/builder/spi-builder-workspace/Sources/VolatileCallSite.swift:73:24: warning: static property 'setTarget_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
71 |     /// public void java.lang.invoke.VolatileCallSite.setTarget(java.lang.invoke.MethodHandle)
72 |
73 |     private static var setTarget_MethodID_3: jmethodID?
   |                        |- warning: static property 'setTarget_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'setTarget_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'setTarget_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 |     open func setTarget( newTarget: MethodHandle? ) {
/Users/admin/builder/spi-builder-workspace/Sources/WeakReference.swift:17:24: warning: static property 'WeakReferenceJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var WeakReferenceJNIClass: jclass?
   |                        |- warning: static property 'WeakReferenceJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'WeakReferenceJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'WeakReferenceJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static java.lang.ref.Reference$Lock java.lang.ref.Reference.lock
/Users/admin/builder/spi-builder-workspace/Sources/WeakReference.swift:37:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
35 |     /// public java.lang.ref.WeakReference(java.lang.Object)
36 |
37 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 |     public convenience init( arg0: java_swift.JavaObject? ) {
/Users/admin/builder/spi-builder-workspace/Sources/WeakReference.swift:54:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
52 |     /// public java.lang.ref.WeakReference(java.lang.Object,java.lang.ref.ReferenceQueue)
53 |
54 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 |
56 |     public convenience init( arg0: java_swift.JavaObject?, arg1: ReferenceQueue? ) {
/Users/admin/builder/spi-builder-workspace/Sources/WildcardType.swift:23:24: warning: static property 'WildcardTypeJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
21 | open class WildcardTypeForward: TypeForward, WildcardType {
22 |
23 |     private static var WildcardTypeJNIClass: jclass?
   |                        |- warning: static property 'WildcardTypeJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'WildcardTypeJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'WildcardTypeJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// public abstract java.lang.reflect.Type[] java.lang.reflect.WildcardType.getLowerBounds()
/Users/admin/builder/spi-builder-workspace/Sources/WildcardType.swift:27:24: warning: static property 'getLowerBounds_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
25 |     /// public abstract java.lang.reflect.Type[] java.lang.reflect.WildcardType.getLowerBounds()
26 |
27 |     private static var getLowerBounds_MethodID_3: jmethodID?
   |                        |- warning: static property 'getLowerBounds_MethodID_3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'getLowerBounds_MethodID_3' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'getLowerBounds_MethodID_3' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 |
29 |     open func getLowerBounds() -> [Type]! {
/Users/admin/builder/spi-builder-workspace/Sources/WildcardType.swift:39:24: warning: static property 'getTypeName_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
37 |     /// public default java.lang.String java.lang.reflect.Type.getTypeName()
38 |
39 |     private static var getTypeName_MethodID_4: jmethodID?
   |                        |- warning: static property 'getTypeName_MethodID_4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'getTypeName_MethodID_4' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'getTypeName_MethodID_4' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 |     override open func getTypeName() -> String! {
/Users/admin/builder/spi-builder-workspace/Sources/WildcardType.swift:52:24: warning: static property 'getUpperBounds_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
50 |     /// public abstract java.lang.reflect.Type[] java.lang.reflect.WildcardType.getUpperBounds()
51 |
52 |     private static var getUpperBounds_MethodID_5: jmethodID?
   |                        |- warning: static property 'getUpperBounds_MethodID_5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'getUpperBounds_MethodID_5' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'getUpperBounds_MethodID_5' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 |
54 |     open func getUpperBounds() -> [Type]! {
/Users/admin/builder/spi-builder-workspace/Sources/WrongMethodTypeException.swift:17:24: warning: static property 'WrongMethodTypeExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     }
16 |
17 |     private static var WrongMethodTypeExceptionJNIClass: jclass?
   |                        |- warning: static property 'WrongMethodTypeExceptionJNIClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'WrongMethodTypeExceptionJNIClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'WrongMethodTypeExceptionJNIClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 |     /// private static final long java.lang.invoke.WrongMethodTypeException.serialVersionUID
/Users/admin/builder/spi-builder-workspace/Sources/WrongMethodTypeException.swift:59:24: warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
57 |     /// public java.lang.invoke.WrongMethodTypeException()
58 |
59 |     private static var new_MethodID_1: jmethodID?
   |                        |- warning: static property 'new_MethodID_1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_1' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_1' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |
61 |     public convenience init() {
/Users/admin/builder/spi-builder-workspace/Sources/WrongMethodTypeException.swift:71:24: warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
69 |     /// public java.lang.invoke.WrongMethodTypeException(java.lang.String)
70 |
71 |     private static var new_MethodID_2: jmethodID?
   |                        |- warning: static property 'new_MethodID_2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'new_MethodID_2' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'new_MethodID_2' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     public convenience init( s: String? ) {
/Users/admin/builder/spi-builder-workspace/Sources/WrongMethodTypeException.swift:8:12: warning: class 'WrongMethodTypeException' must restate inherited '@unchecked Sendable' conformance
 6 | /// class java.lang.invoke.WrongMethodTypeException ///
 7 |
 8 | open class WrongMethodTypeException: RuntimeException {
   |            `- warning: class 'WrongMethodTypeException' must restate inherited '@unchecked Sendable' conformance
 9 |
10 |     public convenience init?( casting object: java_swift.JavaObject, _ file: StaticString = #file, _ line: Int = #line ) {
/Users/admin/builder/spi-builder-workspace/Sources/java_lang.swift:46:24: warning: static property 'floatClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
44 | extension JNIType {
45 |
46 |     private static var floatClass: jclass?
   |                        |- warning: static property 'floatClass' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'floatClass' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'floatClass' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     private static var floatInitMethodID: jmethodID?
48 |
/Users/admin/builder/spi-builder-workspace/Sources/java_lang.swift:47:24: warning: static property 'floatInitMethodID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
45 |
46 |     private static var floatClass: jclass?
47 |     private static var floatInitMethodID: jmethodID?
   |                        |- warning: static property 'floatInitMethodID' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'floatInitMethodID' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'floatInitMethodID' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public static func toJavaFloat( value: Float, locals: UnsafeMutablePointer<[jobject]> ) -> jvalue {
Build complete! (36.28s)
Fetching https://github.com/SwiftJava/java_swift.git
[1/290] Fetching java_swift
Fetched https://github.com/SwiftJava/java_swift.git from cache (0.87s)
Fetching https://github.com/SwiftJava/CJavaVM.git
[1/54] Fetching cjavavm
Fetched https://github.com/SwiftJava/CJavaVM.git from cache (0.71s)
Creating working copy for https://github.com/SwiftJava/java_swift.git
Working copy of https://github.com/SwiftJava/java_swift.git resolved at master (ef87de5)
Creating working copy for https://github.com/SwiftJava/CJavaVM.git
Working copy of https://github.com/SwiftJava/CJavaVM.git resolved at master (654df50)
warning: 'cjavavm': ignoring declared target(s) 'CJavaVM' in the system package
warning: 'cjavavm': system packages are deprecated; use system library targets instead
Build complete.
{
  "dependencies" : [
    {
      "identity" : "java_swift",
      "requirement" : {
        "branch" : [
          "master"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SwiftJava/java_swift.git"
    }
  ],
  "manifest_display_name" : "java_lang",
  "name" : "java_lang",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "java_lang",
      "targets" : [
        "java_lang"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "java_lang",
      "module_type" : "SwiftTarget",
      "name" : "java_lang",
      "path" : "Sources",
      "product_dependencies" : [
        "java_swift"
      ],
      "product_memberships" : [
        "java_lang"
      ],
      "sources" : [
        "AbstractMethodError.swift",
        "AccessibleObject.swift",
        "AnnotatedArrayType.swift",
        "AnnotatedElement.swift",
        "AnnotatedParameterizedType.swift",
        "AnnotatedType.swift",
        "AnnotatedTypeVariable.swift",
        "AnnotatedWildcardType.swift",
        "Annotation.swift",
        "AnnotationFormatError.swift",
        "AnnotationTypeMismatchException.swift",
        "Appendable.swift",
        "ArithmeticException.swift",
        "Array.swift",
        "ArrayIndexOutOfBoundsException.swift",
        "ArrayStoreException.swift",
        "AssertionError.swift",
        "AutoCloseable.swift",
        "Boolean.swift",
        "BootstrapMethodError.swift",
        "BufferPoolMXBean.swift",
        "Byte.swift",
        "CallSite.swift",
        "CharSequence.swift",
        "Character.swift",
        "Character_Subset.swift",
        "Character_UnicodeBlock.swift",
        "Character_UnicodeScript.swift",
        "ClassCastException.swift",
        "ClassCircularityError.swift",
        "ClassDefinition.swift",
        "ClassFileTransformer.swift",
        "ClassFormatError.swift",
        "ClassLoader.swift",
        "ClassLoadingMXBean.swift",
        "ClassNotFoundException.swift",
        "ClassValue.swift",
        "CloneNotSupportedException.swift",
        "Cloneable.swift",
        "CompilationMXBean.swift",
        "Compiler.swift",
        "ConstantCallSite.swift",
        "Constructor.swift",
        "Deprecated.swift",
        "Documented.swift",
        "ElementType.swift",
        "EnumConstantNotPresentException.swift",
        "ExceptionInInitializerError.swift",
        "Executable.swift",
        "Field.swift",
        "FunctionalInterface.swift",
        "GarbageCollectorMXBean.swift",
        "GenericArrayType.swift",
        "GenericDeclaration.swift",
        "GenericSignatureFormatError.swift",
        "IllegalAccessError.swift",
        "IllegalAccessException.swift",
        "IllegalArgumentException.swift",
        "IllegalClassFormatException.swift",
        "IllegalMonitorStateException.swift",
        "IllegalStateException.swift",
        "IllegalThreadStateException.swift",
        "IncompatibleClassChangeError.swift",
        "IncompleteAnnotationException.swift",
        "IndexOutOfBoundsException.swift",
        "InheritableThreadLocal.swift",
        "Inherited.swift",
        "InstantiationError.swift",
        "InstantiationException.swift",
        "Instrumentation.swift",
        "Integer.swift",
        "InternalError.swift",
        "InterruptedException.swift",
        "InvocationHandler.swift",
        "InvocationTargetException.swift",
        "Iterable.swift",
        "JavaComparable.swift",
        "JavaDouble.swift",
        "JavaError.swift",
        "JavaFloat.swift",
        "JavaSecurityException.swift",
        "JavaString.swift",
        "LambdaConversionException.swift",
        "LambdaMetafactory.swift",
        "LinkageError.swift",
        "LockInfo.swift",
        "Long.swift",
        "MalformedParameterizedTypeException.swift",
        "MalformedParametersException.swift",
        "ManagementFactory.swift",
        "ManagementPermission.swift",
        "Math.swift",
        "Member.swift",
        "MemoryMXBean.swift",
        "MemoryManagerMXBean.swift",
        "MemoryNotificationInfo.swift",
        "MemoryPoolMXBean.swift",
        "MemoryType.swift",
        "MemoryUsage.swift",
        "Method.swift",
        "MethodHandle.swift",
        "MethodHandleInfo.swift",
        "MethodHandleProxies.swift",
        "MethodHandles.swift",
        "MethodHandles_Lookup.swift",
        "MethodType.swift",
        "Modifier.swift",
        "MonitorInfo.swift",
        "MutableCallSite.swift",
        "Native.swift",
        "NegativeArraySizeException.swift",
        "NoClassDefFoundError.swift",
        "NoSuchFieldError.swift",
        "NoSuchFieldException.swift",
        "NoSuchMethodError.swift",
        "NoSuchMethodException.swift",
        "NullPointerException.swift",
        "Number.swift",
        "NumberFormatException.swift",
        "OperatingSystemMXBean.swift",
        "OutOfMemoryError.swift",
        "Override.swift",
        "Package.swift",
        "Parameter.swift",
        "ParameterizedType.swift",
        "PhantomReference.swift",
        "PlatformLoggingMXBean.swift",
        "PlatformManagedObject.swift",
        "Process.swift",
        "ProcessBuilder.swift",
        "ProcessBuilder_Redirect.swift",
        "ProcessBuilder_Redirect_Type.swift",
        "Proxy.swift",
        "Readable.swift",
        "Reference.swift",
        "ReferenceQueue.swift",
        "ReflectPermission.swift",
        "ReflectiveOperationException.swift",
        "Repeatable.swift",
        "Retention.swift",
        "RetentionPolicy.swift",
        "Runtime.swift",
        "RuntimeException.swift",
        "RuntimeMXBean.swift",
        "RuntimePermission.swift",
        "SafeVarargs.swift",
        "SecurityManager.swift",
        "SerializedLambda.swift",
        "Short.swift",
        "SoftReference.swift",
        "StackOverflowError.swift",
        "StackTraceElement.swift",
        "StrictMath.swift",
        "StringBuffer.swift",
        "StringBuilder.swift",
        "StringIndexOutOfBoundsException.swift",
        "SuppressWarnings.swift",
        "SwitchPoint.swift",
        "System.swift",
        "Target.swift",
        "ThreadDeath.swift",
        "ThreadGroup.swift",
        "ThreadInfo.swift",
        "ThreadLocal.swift",
        "ThreadMXBean.swift",
        "Thread_State.swift",
        "Thread_UncaughtExceptionHandler.swift",
        "Type.swift",
        "TypeNotPresentException.swift",
        "TypeVariable.swift",
        "UndeclaredThrowableException.swift",
        "UnknownError.swift",
        "UnmodifiableClassException.swift",
        "UnsatisfiedLinkError.swift",
        "UnsupportedClassVersionError.swift",
        "UnsupportedOperationException.swift",
        "VerifyError.swift",
        "VirtualMachineError.swift",
        "Void.swift",
        "VolatileCallSite.swift",
        "WeakReference.swift",
        "WildcardType.swift",
        "WrongMethodTypeException.swift",
        "java_lang.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.