Raj Kumar wrote:

> hi,
>    I found the following piece of code in the class XMLUnmarshaller.
>
>         NodeRevisionDescriptors revisionDescriptors = null;
>         try {
>             accessToken.getContentHelper().retrieve(token, uri);
>         } catch (ObjectLockedException e) {
>             // Ignore
>         }
>
> Should it not be
>         NodeRevisionDescriptors revisionDescriptors = null;
>         try {
>              revisionDescriptors =
> accessToken.getContentHelper().retrieve(token, uri);
>         } catch (ObjectLockedException e) {
>             // Ignore
>         }
>
>     thanks,
>     rajkumar

Looks like you are right... I'll apply your fix.

PS: please change the subject for each new topic, I almost skipped this one

Dirk

Reply via email to