Skip to content

Clean up whitespace and blank line formatting across codebase#279

Merged
mercyblitz merged 1 commit into
mainfrom
copilot/remove-duplicated-line-separators
May 29, 2026
Merged

Clean up whitespace and blank line formatting across codebase#279
mercyblitz merged 1 commit into
mainfrom
copilot/remove-duplicated-line-separators

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented May 29, 2026

Normalize whitespace and blank line formatting across Java source files to reduce formatting noise and improve consistency.

Changes:

  • Consolidate 3+ consecutive blank lines to single blank lines
  • Strip trailing whitespace from all lines
  • Remove trailing blank lines at end of files
  • Ensure proper newline termination

Scope:

  • 325 of 746 Java files cleaned
  • Formatting-only changes; no code logic altered

Example:

// Before
public class Example {

    public void methodA() {
    }


    public void methodB() {
    }

}


// After
public class Example {

    public void methodA() {
    }

    public void methodB() {
    }
}

…iles

- Consolidate 3+ consecutive blank lines to single blank lines
- Strip trailing whitespace from all lines
- Remove trailing blank lines at end of files
- Ensure proper file endings with newlines
- 325 out of 746 Java files cleaned
Copilot AI changed the title Remove duplicated line separators and trailing whitespace Clean up whitespace and blank line formatting across codebase May 29, 2026
Copilot AI requested a review from mercyblitz May 29, 2026 09:17
@sonarqubecloud
Copy link
Copy Markdown

@mercyblitz mercyblitz marked this pull request as ready for review May 29, 2026 09:26
@mercyblitz mercyblitz merged commit 895dc19 into main May 29, 2026
6 checks passed
@codecov
Copy link
Copy Markdown

codecov Bot commented May 29, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

Files with missing lines Coverage Δ Complexity Δ
...essor/ConfigurationPropertyJSONElementVisitor.java 100.00% <ø> (ø) 24.00 <0.00> (ø)
...c/main/java/io/microsphere/beans/BeanMetadata.java 100.00% <ø> (ø) 14.00 <0.00> (ø)
...ssloading/ArchiveFileArtifactResourceResolver.java 100.00% <ø> (ø) 10.00 <0.00> (ø)
.../io/microsphere/classloading/ArtifactDetector.java 98.03% <ø> (ø) 22.00 <0.00> (ø)
...e/classloading/StreamArtifactResourceResolver.java 100.00% <ø> (ø) 20.00 <0.00> (ø)
...ava/io/microsphere/collection/CollectionUtils.java 100.00% <ø> (ø) 46.00 <0.00> (ø)
.../io/microsphere/collection/DelegatingIterator.java 100.00% <ø> (ø) 9.00 <0.00> (ø)
.../java/io/microsphere/collection/EmptyIterator.java 100.00% <ø> (ø) 2.00 <0.00> (ø)
...ava/io/microsphere/collection/IterableAdapter.java 100.00% <ø> (ø) 2.00 <0.00> (ø)
...main/java/io/microsphere/collection/Iterators.java 100.00% <ø> (ø) 9.00 <0.00> (ø)
... and 100 more

... and 3 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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