Bizarrely for the second method Selma generates this:
@Override
public final com.storakle.databaseinterfaces.models.StoreAddedToCartProduct toAddedToCartProduct(com.storakle.databaseinterfaces.models.Customer in, com.storakle.databaseinterfaces.models.StoreAddedToCartProduct out) {
if (in != null) {
out = customMapperStoreVisitRawDataCustomMapper.toAddedToCartProduct(in, out());
} else {
out = null;
}
return out;
}
Notice the out parameter is passed in as out(), which generates a compile error.
Am I doing something wrong or this is a bug?
The text was updated successfully, but these errors were encountered:
Hi, this looks like a bug yes.
Can you provide the StoreVisitRawDataCustomMapper class.
I am sorry but I am on holidays for now and have no time to fix this.
I'll give it a look later.
I have the following mapper:
Bizarrely for the second method Selma generates this:
Notice the out parameter is passed in as out(), which generates a compile error.
Am I doing something wrong or this is a bug?
The text was updated successfully, but these errors were encountered: