Skip to content

Commit 75d3c2e

Browse files
committed
Merge pull request #43876 from arefbehboudi
* gh-43876: Polish Closes gh-43876
2 parents 96b1dd0 + c6b6d0c commit 75d3c2e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

buildSrc/src/main/java/org/springframework/boot/build/antora/Extensions.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2024 the original author or authors.
2+
* Copyright 2012-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -84,7 +84,7 @@ Stream<String> names() {
8484

8585
static final class AntoraExtensionsConfiguration {
8686

87-
private Map<String, Map<String, Object>> extensions = new TreeMap<>();
87+
private final Map<String, Map<String, Object>> extensions = new TreeMap<>();
8888

8989
private AntoraExtensionsConfiguration(List<String> names) {
9090
names.forEach((name) -> this.extensions.put(name, null));

buildSrc/src/main/java/org/springframework/boot/build/bom/BomExtension.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -617,9 +617,9 @@ public void setIssueLabels(List<String> issueLabels) {
617617

618618
public static final class GitHub {
619619

620-
private String organization;
620+
private final String organization;
621621

622-
private String repository;
622+
private final String repository;
623623

624624
private final List<String> issueLabels;
625625

0 commit comments

Comments
 (0)