Skip to content

Commit

Permalink
Merge pull request #43560 from arefbehboudi
Browse files Browse the repository at this point in the history
* pr/43560:
  Polish

Closes gh-43560
  • Loading branch information
philwebb committed Dec 18, 2024
2 parents ef43160 + dbc1fc2 commit 1b8fcb6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -55,8 +55,7 @@ protected String createApplicationClassPath() throws Exception {
List<String> entries = new ArrayList<>();
entries.add(appJar.getAbsolutePath());
entries.addAll(getDependencyJarPaths());
String classpath = StringUtils.collectionToDelimitedString(entries, File.pathSeparator);
return classpath;
return StringUtils.collectionToDelimitedString(entries, File.pathSeparator);
}

private void addToJar(JarOutputStream output, File root, File current) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2023 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -62,7 +62,7 @@ public void onApplicationEvent(ApplicationEvent event) {
}

private void onApplicationStartingEvent(ApplicationStartingEvent event) {
// It's too early to use the Spring environment but we should still allow
// It's too early to use the Spring environment, but we should still allow
// users to disable restart using a System property.
String enabled = System.getProperty(ENABLED_PROPERTY);
RestartInitializer restartInitializer = null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2012-2022 the original author or authors.
* Copyright 2012-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -167,7 +167,7 @@ public boolean isClassReloadable(Class<?> classType) {
}

/**
* Compound {@link Enumeration} that adds an additional item to the front.
* Compound {@link Enumeration} that adds an item to the front.
*/
private static class CompoundEnumeration<E> implements Enumeration<E> {

Expand Down

0 comments on commit 1b8fcb6

Please sign in to comment.