Skip to content

Commit 513af1b

Browse files
committed
Format
1 parent 14b34ec commit 513af1b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/org/springframework/data/neo4j/core/mapping/Neo4jMappingContextTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,7 @@ public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor t
240240
}
241241

242242
Neo4jConversions conversions = new Neo4jConversions(Collections.singleton(new ConvertibleTypeConverter()));
243-
Neo4jMappingContext schema = new Neo4jMappingContext(
244-
conversions);
243+
Neo4jMappingContext schema = new Neo4jMappingContext(conversions);
245244
Neo4jPersistentEntity<?> entity = schema.getPersistentEntity(EntityWithConvertibleProperty.class);
246245

247246
Neo4jPersistentProperty property = entity.getPersistentProperty("convertibleType");
@@ -250,7 +249,8 @@ public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor t
250249
System.out.println("Property: " + property.getClass().getName());
251250
System.out.println("Actual Type: " + property.getActualType());
252251
System.out.println("Writable: " + property.isWritable());
253-
System.out.println("IsAnnotationPresent(Relationship.class): " + property.isAnnotationPresent(Relationship.class));
252+
System.out
253+
.println("IsAnnotationPresent(Relationship.class): " + property.isAnnotationPresent(Relationship.class));
254254
System.out.println("Association: " + property.isAssociation());
255255
System.out.println("Composite: " + property.isComposite());
256256
System.out.println("Has CustomWrite: " + schema.hasCustomWriteTarget(property.getActualType()));

0 commit comments

Comments
 (0)