spring-projects / spring-data-jpa

Simplifies the development of creating a JPA-based data access layer.
https://spring.io/projects/spring-data-jpa/
Apache License 2.0
3.03k stars 1.42k forks source link

Remove unnecessary semicolons from the `Instant` field of the `DefaultRevisionMetadataUnitTests` class #3670

Closed PgmJun closed 2 weeks ago

PgmJun commented 2 weeks ago

Closes #3669

class DefaultRevisionMetadataUnitTests {

    private static final Instant NOW = Instant.now();;

I found a semicolon in the Instant field of the DefaultRevisionMetadataUnitTests class that is being used unnecessarily.

class DefaultRevisionMetadataUnitTests {

    private static final Instant NOW = Instant.now();

So I tried to remove one unnecessary semicolon.

mp911de commented 2 weeks ago

Thank you for your contribution. That's merged and backported now.