You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Selma does not seem to recognise nested 'mapping' methods correctly when generating 'cloning methods', eg
interface MyMapper {
MyBean clone(MyBean bean);
NestedBean clone(NestedBean nested);
}
class MyBean {
NestedBean getNested();
void setNested(NestedBean nested);
}
class NestedBean {
int getValue();
void setValue(int value);
}
Selma generates the clone(NestedBean) method correctly but also generates a separate asNestedBean method which the clone(MyBean) method delegates to. It should just use the clone(NestedBean) method.
The text was updated successfully, but these errors were encountered:
Selma does not seem to recognise nested 'mapping' methods correctly when generating 'cloning methods', eg
Selma generates the
clone(NestedBean)
method correctly but also generates a separateasNestedBean
method which theclone(MyBean)
method delegates to. It should just use theclone(NestedBean)
method.The text was updated successfully, but these errors were encountered: