Skip to content

Commit 53c4ae8

Browse files
committed
Merge branch '3.3.x' into 3.4.x
Closes gh-43907
2 parents eea9491 + 75d3c2e commit 53c4ae8

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
@@ -616,9 +616,9 @@ public void setIssueLabels(List<String> issueLabels) {
616616

617617
public static final class GitHub {
618618

619-
private String organization;
619+
private final String organization;
620620

621-
private String repository;
621+
private final String repository;
622622

623623
private final List<String> issueLabels;
624624

0 commit comments

Comments
 (0)