From 4f824bf9ad572af675f8cde21c6337de8467891d Mon Sep 17 00:00:00 2001 From: dreis2211 Date: Mon, 17 Feb 2020 22:03:48 +0100 Subject: [PATCH] Fix duplicate words See gh-20210 --- .../springframework/boot/buildpack/platform/docker/Errors.java | 2 +- .../springframework/boot/loader/ExecutableArchiveLauncher.java | 2 +- .../org/springframework/boot/loader/LaunchedURLClassLoader.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/Errors.java b/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/Errors.java index e6deb4641fa..183e9259798 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/Errors.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/Errors.java @@ -53,7 +53,7 @@ public class Errors implements Iterable { } /** - * Return if the there are any contained errors. + * Return if there are any contained errors. * @return if the errors are empty */ public boolean isEmpty() { diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java index 9ed5fee0aa7..2205b53926d 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java @@ -127,7 +127,7 @@ public abstract class ExecutableArchiveLauncher extends Launcher { } /** - * Determine if the specified entry is a a candidate for further searching. + * Determine if the specified entry is a candidate for further searching. * @param entry the entry to check * @return {@code true} if the entry is a candidate for further searching */ diff --git a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/LaunchedURLClassLoader.java b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/LaunchedURLClassLoader.java index 0c9fde67899..bf5ec924d8a 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/LaunchedURLClassLoader.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/LaunchedURLClassLoader.java @@ -59,7 +59,7 @@ public class LaunchedURLClassLoader extends URLClassLoader { /** * Create a new {@link LaunchedURLClassLoader} instance. - * @param exploded the the underlying archive is exploded + * @param exploded if the underlying archive is exploded * @param urls the URLs from which to load classes and resources * @param parent the parent class loader for delegation */