Skip to content

Commit 7f44e1c

Browse files
committed
Fix property URL formatting
1 parent 0e0900c commit 7f44e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/sds-aspect-model-validator/src/main/java/io/openmanufacturing/sds/aspectmodel/validation/services/DetailedViolationFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ protected String processSemanticViolations( final List<Violation> violations ) {
128128
Optional.ofNullable( violation.context().element().getURI() ).orElse( "anonymous element" ) ) );
129129
violation.context().property().ifPresent( property -> {
130130
builder.append( String.format( " context-property: %s%n", violation.shortUri( property.getURI() ) ) );
131-
builder.append( String.format( " context-property-full: <%s>%n", property.getURI() ) );
131+
builder.append( String.format( " context-property-full: %s%n", property.getURI() ) );
132132
} );
133133

134134
for ( final String line : violation.accept( this ).split( "\n" ) ) {

0 commit comments

Comments
 (0)