Skip to content

Commit dc98785

Browse files
committed
Polishing.
Add missing imports. Remove superfluous visibility modifier. See #2191
1 parent 7116fc1 commit dc98785

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test/java/org/springframework/data/jpa/mapping/JpaPersistentPropertyImplUnitTests.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
import javax.persistence.metamodel.ManagedType;
3232
import javax.persistence.metamodel.Metamodel;
3333

34+
import org.jmolecules.ddd.types.AggregateRoot;
35+
import org.jmolecules.ddd.types.Association;
36+
import org.jmolecules.ddd.types.Identifier;
3437
import org.junit.jupiter.api.BeforeEach;
3538
import org.junit.jupiter.api.Test;
3639
import org.junit.jupiter.api.extension.ExtendWith;
@@ -310,5 +313,5 @@ private static class JMoleculesSample {
310313
Association<JMoleculesAggregate, Identifier> association;
311314
}
312315

313-
private static interface JMoleculesAggregate extends AggregateRoot<JMoleculesAggregate, Identifier> {}
316+
private interface JMoleculesAggregate extends AggregateRoot<JMoleculesAggregate, Identifier> {}
314317
}

0 commit comments

Comments
 (0)