Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit 8d5f8bb

Browse files
committed
Resolving package path for mixins in the dataformat-rdf serializer
1 parent 9d130ce commit 8d5f8bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataformat-rdf/src/main/java/io/adminshell/aas/v3/dataformat/rdf/custom/ReflectiveMixInResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public Class<?> findMixInClassFor(Class<?> cls) {
2626
return JsonLdEnumMixin.class;
2727
}
2828
try {
29-
return Class.forName("io.adminshell.aas.v3.dataformat.jsonld.mixins." + cls.getSimpleName() + "Mixin");
29+
return Class.forName("io.adminshell.aas.v3.dataformat.rdf.mixins." + cls.getSimpleName() + "Mixin");
3030
}
3131
catch (ClassNotFoundException ignored)
3232
{

0 commit comments

Comments
 (0)