Skip to content

Commit 5bc43ae

Browse files
committed
Polish "Use HTTPS for external links wherever possible"
See gh-16317
1 parent 189eeef commit 5bc43ae

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/NarayanaJtaConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2019 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.
@@ -44,7 +44,7 @@
4444
import org.springframework.util.StringUtils;
4545

4646
/**
47-
* JTA Configuration for <a href="http://narayana.io/">Narayana</a>.
47+
* JTA Configuration for <a href="https://github.com/jbosstm/narayana">Narayana</a>.
4848
*
4949
* @author Gytis Trikleris
5050
* @since 1.4.0

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5027,8 +5027,8 @@ the following provided libraries:
50275027
* {spring-reference}/#integration-testing[Spring Test] & Spring Boot Test --
50285028
Utilities and integration test support for Spring Boot applications.
50295029
* https://joel-costigliola.github.io/assertj/[AssertJ] -- A fluent assertion library.
5030-
* http://hamcrest.org/JavaHamcrest/[Hamcrest] -- A library of matcher objects (also known
5031-
as constraints or predicates).
5030+
* https://github.com/hamcrest/JavaHamcrest[Hamcrest] -- A library of matcher objects
5031+
(also known as constraints or predicates).
50325032
* https://mockito.github.io[Mockito] -- A Java mocking framework.
50335033
* https://github.com/skyscreamer/JSONassert[JSONassert] -- An assertion library for JSON.
50345034
* https://github.com/jayway/JsonPath[JsonPath] -- XPath for JSON.

spring-boot-starters/README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@ do as they were designed before this was clarified.
8888
| https://camunda.org/[Camunda BPM]
8989
| https://github.com/camunda/camunda-bpm-spring-boot-starter
9090

91-
| http://ff4j.org/[Feature Flipping For Java (FF4J)]
91+
| https://ff4j.github.io[Feature Flipping For Java (FF4J)]
9292
| https://github.com/clun/ff4j/
9393

9494
| https://resteasy.jboss.org/[RESTEasy]
9595
| https://github.com/paypal/resteasy-spring-boot
9696

97-
| JSF (https://primefaces.org/[PrimeFaces], https://primefaces-extensions.github.io/[PrimeFaces Extensions], https://bootsfaces.net/[BootsFaces], http://butterfaces.org/[ButterFaces], https://omnifaces.org/[OmniFaces], https://angularfaces.net/[AngularFaces], https://javaserverfaces.java.net/[Mojarra] and https://myfaces.apache.org[MyFaces])
98-
| http://joinfaces.org
97+
| JSF (https://primefaces.org/[PrimeFaces], https://primefaces-extensions.github.io/[PrimeFaces Extensions], https://bootsfaces.net/[BootsFaces], https://github.com/ButterFaces/ButterFaces[ButterFaces], https://omnifaces.org/[OmniFaces], https://angularfaces.net/[AngularFaces], https://javaserverfaces.java.net/[Mojarra] and https://myfaces.apache.org[MyFaces])
98+
| https://github.com/joinfaces/joinfaces
9999

100100
| Charon reverse proxy
101101
| https://github.com/mkopylec/charon-spring-boot-starter
102102

103-
| http://wiremock.org/[WireMock] and Spring REST Docs
103+
| https://github.com/tomakehurst/wiremock[WireMock] and Spring REST Docs
104104
| https://github.com/ePages-de/restdocs-wiremock
105105

106106
| https://cxf.apache.org/docs/springboot.html[Apache CXF]

spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/CentralDirectoryFileHeader.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2019 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.
@@ -27,7 +27,7 @@
2727
*
2828
* @author Phillip Webb
2929
* @author Andy Wilkinson
30-
* @see <a href="https://en.wikipedia.org/wiki/Zip_%2528file_format%2529">Zip File Format</a>
30+
* @see <a href="https://en.wikipedia.org/wiki/Zip_%28file_format%29">Zip File Format</a>
3131
*/
3232

3333
final class CentralDirectoryFileHeader implements FileHeader {
@@ -123,8 +123,8 @@ public long getTime() {
123123

124124
/**
125125
* Decode MS-DOS Date Time details. See
126-
* <a href="http://mindprod.com/jgloss/zip.html">mindprod.com/jgloss/zip.html</a> for
127-
* more details of the format.
126+
* <a href="https://docs.microsoft.com/en-gb/windows/desktop/api/winbase/nf-winbase-dosdatetimetofiletime">
127+
* Microsoft's documentation</a> for more details of the format.
128128
* @param date the date part
129129
* @param time the time part
130130
* @return a {@link Calendar} containing the decoded date.

0 commit comments

Comments
 (0)