Fix excess trailing newlines in Java source files - #27
Closed
mercyblitz with Copilot wants to merge 2 commits into
Closed
Fix excess trailing newlines in Java source files#27mercyblitz with Copilot wants to merge 2 commits into
mercyblitz with Copilot wants to merge 2 commits into
Conversation
Copilot created this pull request from a session on behalf of
mercyblitz
May 29, 2026 11:35
View session
mercyblitz
marked this pull request as ready for review
May 29, 2026 11:36
|
Copilot
AI
changed the title
Clean up formatting: remove trailing whitespace and excessive blank lines
Fix excess trailing newlines in Java source files
May 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



A previous cleanup operation inadvertently added multiple trailing newlines to the end of Java source files. This follow-up corrects the issue by ensuring all files end with the proper format: closing brace
}followed by exactly one newline character.Changes
microsphere-spring-cloud-gateway-commons/src/main/java/.../config/ConfigUtils.javamicrosphere-spring-cloud-gateway-commons/src/main/java/.../config/WebEndpointConfig.javamicrosphere-spring-cloud-gateway-server-webflux/src/main/java/.../util/GatewayUtils.javamicrosphere-spring-cloud-gateway-server-webflux/src/test/java/.../filter/NoOpGatewayFilter.javaExample
Before (incorrect):
After (correct):
All files now follow the proper format with closing braces preserved and no extraneous trailing newlines. Code compilation verified successfully.