Hey Tania,

On Mon, 2006-08-21 at 15:00 -0400, Tania Bento wrote:
> The application JabRef was not even starting on Classpath.  This patch
> enables it to start up.  However, it seems to freeze once that happens.
> It still needs some work.

Cool. CCed Egon who was interested JabRef.
Could one of you update the JabRef entry on
http://developer.classpath.org/mediation/FreeSwingTestApps

> 2006-08-21  Tania Bento  <[EMAIL PROTECTED]>
> 
>         * javax/swing/plaf/basic/BasicToolBarUI.java:
>         (setBorderToNonRollover): If border == null, then the
>         insets should be used when saving the old border in the
> hastable.
>         * javax/swing/JTree.java:
>         (setLeadSelectionPath): Need to make sure that path != null when
>         determining if path.equals(oldValue). This avoid a Null Pointer
>         Exception.

Maybe that check needs to be 
 if (path == oldValue || path != null && path.equals(oldValue))
to catch the case both path and oldValue are null?

Thanks,

Mark


Reply via email to