Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update dependency com.puppycrawl.tools:checkstyle to v10.12.3 #85

Merged
merged 2 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version = "1.0"

[versions]
checkstyle = "10.12.1"
checkstyle = "10.12.3"
indra = "3.1.1"
junit = "5.9.3"
spotless = "6.19.0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of examination, licensed under the MIT License.
*
* Copyright (c) 2018-2021 KyoriPowered
* Copyright (c) 2018-2023 KyoriPowered
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -327,7 +327,7 @@ void testString() {
assertThat(this.examiner.examine("abc")).containsExactly("\"abc\"");
}

private static class ExaminableA implements Examinable {
private static final class ExaminableA implements Examinable {
@Override
public @NonNull Stream<? extends ExaminableProperty> examinableProperties() {
return Stream.of(
Expand All @@ -347,7 +347,7 @@ private static class ExaminableB implements Examinable {
}
}

private static class ExaminableC extends ExaminableB {
private static final class ExaminableC extends ExaminableB {
@Override
public @NonNull Stream<? extends ExaminableProperty> examinableProperties() {
return Stream.concat(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* This file is part of examination, licensed under the MIT License.
*
* Copyright (c) 2018-2021 KyoriPowered
* Copyright (c) 2018-2023 KyoriPowered
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -319,7 +319,7 @@ void testString() {
assertEquals("\"abc\"", this.examiner.examine("abc"));
}

private static class ExaminableA implements Examinable {
private static final class ExaminableA implements Examinable {
@Override
public @NonNull Stream<? extends ExaminableProperty> examinableProperties() {
return Stream.of(
Expand All @@ -339,7 +339,7 @@ private static class ExaminableB implements Examinable {
}
}

private static class ExaminableC extends ExaminableB {
private static final class ExaminableC extends ExaminableB {
@Override
public @NonNull Stream<? extends ExaminableProperty> examinableProperties() {
return Stream.concat(
Expand Down