Skip to content

Commit c4e1e2e

Browse files
committed
Format
1 parent 6ec22f6 commit c4e1e2e

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
@@ -244,14 +244,14 @@ public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor t
244244
Neo4jPersistentEntity<?> entity = schema.getPersistentEntity(EntityWithConvertibleProperty.class);
245245

246246
Neo4jPersistentProperty property = entity.getPersistentProperty("convertibleType");
247-
boolean result = property
248-
.isRelationship();
247+
boolean result = property.isRelationship();
249248

250249
System.out.println("Writable: " + property.isWritable());
251250
System.out.println("Association: " + property.isAssociation());
252251
System.out.println("Composite: " + property.isComposite());
253252
System.out.println("Has CustomWrite: " + schema.hasCustomWriteTarget(property.getActualType()));
254-
System.out.println("Is SimpleType: " + schema.getConversionService().isSimpleType(EntityWithConvertibleProperty.class));
253+
System.out.println(
254+
"Is SimpleType: " + schema.getConversionService().isSimpleType(EntityWithConvertibleProperty.class));
255255

256256
Assertions.assertThat(result).isFalse();
257257
}

0 commit comments

Comments
 (0)