Skip to content

Commit

Permalink
Merge master HEAD into openj9-staging
Browse files Browse the repository at this point in the history
Signed-off-by: J9 Build <[email protected]>
  • Loading branch information
j9build committed May 8, 2024
2 parents 8fe6528 + d02f2c0 commit e746df7
Show file tree
Hide file tree
Showing 21 changed files with 762 additions and 233 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public sealed interface ClassSignature
* {@return a class signature}
* @param superclassSignature the superclass
* @param superinterfaceSignatures the interfaces
* @since 23
*/
public static ClassSignature of(Signature.ClassTypeSig superclassSignature,
Signature.ClassTypeSig... superinterfaceSignatures) {
Expand All @@ -65,6 +66,7 @@ public static ClassSignature of(Signature.ClassTypeSig superclassSignature,
* @param typeParameters the type parameters
* @param superclassSignature the superclass
* @param superinterfaceSignatures the interfaces
* @since 23
*/
public static ClassSignature of(List<Signature.TypeParam> typeParameters,
Signature.ClassTypeSig superclassSignature,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2012, 2023, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -248,6 +248,11 @@ public final int characteristics() {
c |= (spliterator.characteristics() & (Spliterator.SIZED | Spliterator.SUBSIZED));
}

// It's not allowed for a Spliterator to report SORTED if not also ORDERED
if ((c & Spliterator.SORTED) != 0 && (c & Spliterator.ORDERED) == 0) {
c &= ~(Spliterator.SORTED);
}

return c;
}

Expand Down
4 changes: 2 additions & 2 deletions src/java.base/share/data/publicsuffixlist/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Github: https://raw.githubusercontent.com/publicsuffix/list/b5bf572c52988dbe9d865b8f090ea819024a9936/public_suffix_list.dat
Date: 2023-11-09
Github: https://raw.githubusercontent.com/publicsuffix/list/1cbd6e71a9b83620b1d0b11e49d3d9ff48c27e22/public_suffix_list.dat
Date: 2024-05-07
Loading

0 comments on commit e746df7

Please sign in to comment.