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 e6deb4641fab..183e92597989 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 Stream stream() { } /** - * 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 9ed5fee0aa77..2205b53926d7 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 @@ private Iterator applyClassPathArchivePostProcessing(Iterator } /** - * 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 0c9fde678996..bf5ec924d8ab 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 LaunchedURLClassLoader(URL[] urls, ClassLoader parent) { /** * 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 */