Skip Menu |

This queue is for tickets about the RDF-Core CPAN distribution.

Report information
The Basics
Id: 26322
Status: open
Priority: 0/
Queue: RDF-Core

People
Owner: dan [...] gingerall.cz
Requestors: puz [...] developmentontheedge.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: RDF::Core::Resource error
Date: Fri, 13 Apr 2007 18:45:40 +0700
To: bug-RDF-Core [...] rt.cpan.org
From: "Mikhail V. Puzanov" <puz [...] developmentontheedge.com>
Hello. I'am using - RDF-Core-0.51 - perl, v5.8.0 built for MSWin32-x86-multi-thread and have the following error: Can't locate object method "getURI" via package "RDF::Core::Literal" at c:/Perl/site/lib/RDF/Core/Resource.pm line 95 When replacing !$self->isLiteral && $self->getURI eq $other->getURI; with !$self->isLiteral && $self->getLabel eq $other->getLabel; everything works fine. -- Regards Mikhail V. Puzanov
On Fri Apr 13 07:45:39 2007, puz@developmentontheedge.com wrote: Show quoted text
> Hello. > > I'am using > - RDF-Core-0.51 > - perl, v5.8.0 built for MSWin32-x86-multi-thread > > and have the following error: > > Can't locate object method "getURI" via package "RDF::Core::Literal" > at c:/Perl/site/lib/RDF/Core/Resource.pm line 95 > > > When replacing > !$self->isLiteral && $self->getURI eq $other->getURI; > with > !$self->isLiteral && $self->getLabel eq $other->getLabel; > > everything works fine. > >
Hello, thanks for pointing out. Correct code will probably be: !$other->isLiteral && $self->getURI eq $other->getURI; I'll fix it soon.