Skip to content

Normalize whitespace and line endings across Java source files#16

Merged
mercyblitz merged 1 commit into
dev-1.xfrom
copilot/remove-duplicated-line-separators-again
May 29, 2026
Merged

Normalize whitespace and line endings across Java source files#16
mercyblitz merged 1 commit into
dev-1.xfrom
copilot/remove-duplicated-line-separators-again

Conversation

Copilot AI commented May 29, 2026

Copy link
Copy Markdown
Contributor

Standardize line endings and whitespace formatting across the codebase to improve consistency and reduce diff noise.

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 all files end with newlines

Scope: 18 of 27 Java files required updates; 9 were already compliant.

Example:

// Before
public class A {

    public void action() {
    }


    public void action2() {
    }

}

// After
public class A {

    public void action() {
    }

    public void action2() {
    }
}

All Java files compile successfully post-change.

@augmentcode

augmentcode Bot commented May 29, 2026

Copy link
Copy Markdown
🤖 Augment PR Summary

Summary: This PR standardizes whitespace and line endings across the Java sources to improve consistency and reduce noisy diffs.

Changes:

  • Ensures files end with a trailing newline (removes \ No newline at end of file cases)
  • Removes extra blank lines within files and at EOF
  • Strips stray blank lines around imports and within test helpers

Technical Notes: Functional code is unchanged; the intent is purely formatting normalization to keep future diffs clean and tooling behavior consistent.

🤖 Was this summary useful? React with 👍 or 👎

@augmentcode augmentcode Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review completed. No suggestions at this time.

Comment augment review to trigger a new review at any time.

@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 Δ
...o/microsphere/hibernate/DelegatingInterceptor.java 100.00% <ø> (ø) 21.00 <0.00> (ø)
...osphere/hibernate/constants/PropertyConstants.java 100.00% <ø> (ø) 1.00 <0.00> (ø)
...here/hibernate/entity/CompositeEntityCallback.java 100.00% <ø> (ø) 24.00 <0.00> (ø)
...re/hibernate/entity/EntittyCallbackIntegrator.java 100.00% <ø> (ø) 3.00 <0.00> (ø)
...o/microsphere/hibernate/entity/EntityCallback.java 100.00% <ø> (ø) 23.00 <0.00> (ø)
...phere/hibernate/entity/EntityCallbackListener.java 98.33% <ø> (ø) 30.00 <0.00> (ø)
...sphere/hibernate/test/AbstractHibernateH2Test.java 100.00% <ø> (ø) 5.00 <0.00> (ø)
...rosphere/hibernate/test/AbstractHibernateTest.java 100.00% <ø> (ø) 6.00 <0.00> (ø)
.../io/microsphere/hibernate/test/entity/Product.java 100.00% <ø> (ø) 12.00 <0.00> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@mercyblitz mercyblitz merged commit be51b15 into dev-1.x May 29, 2026
70 checks passed
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