You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by "Greg Huber (JIRA)" <ji...@apache.org> on 2010/06/30 16:25:56 UTC

[jira] Created: (ROL-1870) Duplicate bookmarks not showing

Duplicate bookmarks not showing
-------------------------------

                 Key: ROL-1870
                 URL: https://issues.apache.org/jira/browse/ROL-1870
             Project: Roller
          Issue Type: Bug
          Components: Bookmark Management
    Affects Versions: 4.0.1
            Reporter: Greg Huber
            Assignee: Roller Unassigned


Hello,

Noticed that bookmarks with the same name in the same folder do not show on the ui.  The method from WeblogBookmarkFolder

public Set getBookmarks() {
        return this.bookmarks;
    }

uses a set, but the pojo WeblogBookmark uses this equals/hashcode,  ie name and folder.  Needs a uniqueness.  Only option is to use the id. 

public boolean equals(Object other) {
        if (other == this) return true;
        if (other instanceof WeblogBookmark != true) return false;
        WeblogBookmark o = (WeblogBookmark)other;
        return new EqualsBuilder()
        .append(getName(), o.getName())
        .append(getFolder(), o.getFolder())
        .isEquals();
    }
    
    public int hashCode() {
        return new HashCodeBuilder()
        .append(getName())
        .append(getFolder())
        .toHashCode();
    }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.