You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@jena.apache.org by Holger Knublauch <ya...@knublauch.com> on 2011/04/20 02:26:59 UTC

Bug in PathWriter with ARQ 2.8.7

Hi Andy,

	P_ZeroOrMore left = new P_ZeroOrMore(new P_Link(RDF.rest.asNode()));
	P_Link right = new P_Link(RDF.first.asNode());
	P_Seq seq = new P_Seq(left, right);
	System.out.println(PathWriter.asString(seq));

Output:

((<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest>)*/<http://www.w3.org/1999/02/22-rdf-syntax-ns#first>

Lacks a closing ')' at the end.

Thanks
Holger


Re: Bug in PathWriter with ARQ 2.8.7

Posted by Andy Seaborne <an...@epimorphics.com>.
Now fixed in SVN - thanks

	Andy

On 20/04/11 01:26, Holger Knublauch wrote:
> Hi Andy,
>
> 	P_ZeroOrMore left = new P_ZeroOrMore(new P_Link(RDF.rest.asNode()));
> 	P_Link right = new P_Link(RDF.first.asNode());
> 	P_Seq seq = new P_Seq(left, right);
> 	System.out.println(PathWriter.asString(seq));
>
> Output:
>
> ((<http://www.w3.org/1999/02/22-rdf-syntax-ns#rest>)*/<http://www.w3.org/1999/02/22-rdf-syntax-ns#first>
>
> Lacks a closing ')' at the end.
>
> Thanks
> Holger
>
>