Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Allow for duplicate signatures
  • Loading branch information
olas committed Aug 16, 2012
1 parent d3cd997 commit 3c6d3a3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ public void setSignatures( List<String> signatures ) {
public void addSignatures( List<String> signatures_in ) {
if (signatures==null) signatures=new ArrayList<String>();
for (String sign : signatures_in){
if (!signatures.contains(sign))
// if (!signatures.contains(sign))
signatures.add(sign);
}
}
Expand Down

0 comments on commit 3c6d3a3

Please sign in to comment.