Skip to content

Commit 356a3c2

Browse files
Update dependency com.google.errorprone:error_prone_core to v2.49.0 (main) (#5589)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: M.P. Korstanje <rien.korstanje@gmail.com>
1 parent 301ec29 commit 356a3c2

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/cross-version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ jobs:
3131
type: ga
3232
- version: 27
3333
type: ea
34-
broken-by-issue: "https://github.com/junit-team/junit-framework/issues/5605"
34+
broken-by-issue: "https://github.com/uber/NullAway/issues/1534"
3535
- version: 26
3636
type: ea
3737
release: leyden
3838
- version: 27
3939
type: ea
4040
release: valhalla
41+
broken-by-issue: "https://github.com/uber/NullAway/issues/1534"
4142
name: "OpenJDK ${{ matrix.jdk.version }} (${{ matrix.jdk.release || matrix.jdk.type }})"
4243
runs-on: ubuntu-latest
4344
steps:

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checks
3131
classgraph = { module = "io.github.classgraph:classgraph", version = "4.8.184" }
3232
commons-io = { module = "commons-io:commons-io", version = "2.21.0" }
3333
error-prone-contrib = { module = "tech.picnic.error-prone-support:error-prone-contrib", version = "0.29.0" }
34-
error-prone-core = { module = "com.google.errorprone:error_prone_core", version = "2.48.0" }
34+
error-prone-core = { module = "com.google.errorprone:error_prone_core", version = "2.49.0" }
3535
fastcsv = { module = "de.siegmar:fastcsv", version = "4.2.0" }
3636
groovy = { module = "org.apache.groovy:groovy", version = "5.0.5" }
3737
groovy2-bom = { module = "org.codehaus.groovy:groovy-bom", version = "2.5.23" }
@@ -60,7 +60,7 @@ mockito-bom = { module = "org.mockito:mockito-bom", version = "5.23.0" }
6060
mockito-core = { module = "org.mockito:mockito-core" }
6161
mockito-junit-jupiter = { module = "org.mockito:mockito-junit-jupiter" }
6262
nohttp-checkstyle = { module = "io.spring.nohttp:nohttp-checkstyle", version = "0.0.11" }
63-
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.13.1" }
63+
nullaway = { module = "com.uber.nullaway:nullaway", version = "0.13.3" }
6464
opentest4j = { module = "org.opentest4j:opentest4j", version.ref = "opentest4j" }
6565
openTestReporting-cli = { module = "org.opentest4j.reporting:open-test-reporting-cli", version.ref = "openTestReporting" }
6666
openTestReporting-events = { module = "org.opentest4j.reporting:open-test-reporting-events", version.ref = "openTestReporting" }

junit-jupiter-api/src/main/java/org/junit/jupiter/api/AssertLinesMatch.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actual
5454
assertLinesMatch(expectedLines, actualLines, (Object) message);
5555
}
5656

57+
@SuppressWarnings("ReferenceEquality")
5758
static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actualLines,
5859
@Nullable Object messageOrSupplier) {
5960
notNull(expectedLines, "expectedLines must not be null");
@@ -69,6 +70,7 @@ static void assertLinesMatch(Stream<String> expectedLines, Stream<String> actual
6970
assertLinesMatch(expectedListOfStrings, actualListOfStrings, messageOrSupplier);
7071
}
7172

73+
@SuppressWarnings("ReferenceEquality")
7274
static void assertLinesMatch(List<String> expectedLines, List<String> actualLines,
7375
@Nullable Object messageOrSupplier) {
7476
notNull(expectedLines, "expectedLines must not be null");

junit-jupiter-api/src/main/java/org/junit/jupiter/api/DynamicNode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public String toString() {
9595
*/
9696
@API(status = EXPERIMENTAL, since = "6.1")
9797
public sealed interface Configuration<T extends Configuration<T>>
98-
permits AbstractConfiguration, DynamicTest.Configuration, DynamicContainer.Configuration {
98+
permits AbstractConfiguration, DynamicContainer.Configuration, DynamicTest.Configuration {
9999

100100
/**
101101
* Set the {@linkplain DynamicNode#getDisplayName() display name} to use

0 commit comments

Comments
 (0)