Is there another bug in AssociationModel?
public static String getDeclaringClassName( String qualifiedName )
{
int idx = qualifiedName.lastIndexOf( ":" );
return qualifiedName.substring( 0, idx + 1 );
}
shouldn't this be
qualifiedName.substring( 0, idx );
There is no test for the method and no usage in the project.
Michael
Rickard Öberg schrieb:
> Jan Kronquist wrote:
>> I have also completed the implementation of associations, although I
>> was a bit confused why the qualified name of ManyAssociation model
>> must differ in the EntityState? Is this a bug or have I missed
>> somthing? Like this:
>
> And now I see that AssociationModel does not do this escaping, hence the
> need to do it manually. It's a bug.
> /Rickard
>
>
> _______________________________________________
> qi4j-dev mailing list
> [email protected]
> http://lists.ops4j.org/mailman/listinfo/qi4j-dev
_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev