Skip to content

Clean up Java formatting: consolidate blank lines and remove trailing whitespace#28

Closed
mercyblitz with Copilot wants to merge 1 commit into
mainfrom
copilot/remove-duplicated-line-separators
Closed

Clean up Java formatting: consolidate blank lines and remove trailing whitespace#28
mercyblitz with Copilot wants to merge 1 commit into
mainfrom
copilot/remove-duplicated-line-separators

Conversation

Copilot AI commented May 29, 2026

Copy link
Copy Markdown
Contributor

Removes duplicated line separators and trailing whitespace across the Java source codebase to improve consistency and reduce diff noise.

Changes

  • Consolidated excessive blank lines: 3+ consecutive blank lines reduced to single blank lines across 40 Java files
  • Stripped trailing whitespace: Removed trailing spaces/tabs from all lines
  • Normalized file endings: Removed trailing blank lines and ensured all files end with a newline

Example

Before:

public class Example {

    public void action() {
    }


    public void action2() {
    }

}

After:

public class Example {

    public void action() {
    }

    public void action2() {
    }
}

Verification

  • All 46 unit tests passing
  • Code compiles successfully post-cleanup

@sonarqubecloud

Copy link
Copy Markdown

@mercyblitz mercyblitz marked this pull request as ready for review May 29, 2026 11:36
@codecov

codecov Bot commented May 29, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

Files with missing lines Coverage Δ Complexity Δ
...ointConfigurationPropertiesBindHandlerAdvisor.java 100.00% <ø> (ø) 3.00 <0.00> (ø)
...ebflux/autoconfigure/GatewayAutoConfiguration.java 100.00% <ø> (ø) 1.00 <0.00> (ø)
...re/WebEndpointMappingGatewayAutoConfiguration.java 100.00% <ø> (ø) 2.00 <0.00> (ø)
...text/WebEndpointApplicationContextInitializer.java 100.00% <ø> (ø) 2.00 <0.00> (ø)
...HeartbeatEventRouteRefreshListenerInterceptor.java 100.00% <ø> (ø) 8.00 <0.00> (ø)
...pagatingRefreshRoutesEventApplicationListener.java 100.00% <ø> (ø) 7.00 <0.00> (ø)
...rver/webflux/filter/DefaultGatewayFilterChain.java 100.00% <ø> (ø) 4.00 <0.00> (ø)
...webflux/filter/WebEndpointMappingGlobalFilter.java 99.52% <ø> (ø) 73.00 <0.00> (ø)
...er/webflux/handler/CachingFilteringWebHandler.java 100.00% <ø> (ø) 14.00 <0.00> (ø)
...WebHandlerBeanDefinitionRegistryPostProcessor.java 100.00% <ø> (ø) 4.00 <0.00> (ø)
... and 3 more
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copilot AI requested a review from mercyblitz May 29, 2026 12:34
@mercyblitz mercyblitz closed this May 29, 2026
@mercyblitz mercyblitz deleted the copilot/remove-duplicated-line-separators branch May 29, 2026 14:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants