Author: mvw Date: 2008-02-07 00:41:50-0800 New Revision: 14086 Modified: trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java
Log: Call makeUniqueName() only once. Modified: trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java?view=diff&rev=14086&p1=trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java&p2=trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java&r1=14085&r2=14086 ============================================================================== --- trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java (original) +++ trunk/src_new/org/argouml/uml/diagram/ProjectMemberDiagram.java 2008-02-07 00:41:50-0800 @@ -1,5 +1,5 @@ // $Id$ -// Copyright (c) 1996-2006 The Regents of the University of California. All +// Copyright (c) 1996-2008 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice @@ -46,9 +46,7 @@ * @param p the project */ public ProjectMemberDiagram(ArgoDiagram d, Project p) { - super(null, p); - String s = Util.stripJunk(d.getName()); - makeUniqueName(s); + super(Util.stripJunk(d.getName()), p); setDiagram(d); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
