mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 14:03:17 +00:00
Another small fix to commit r5659 -- forgot "final" in the RoleDisseminator Logger, and neglected to properly use 'exportMemberName' variable I had defined. Obviously, I committed that previous code a moment too soon :)
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5662 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -74,7 +74,7 @@ public class RoleDisseminator implements PackageDisseminator
|
||||
{
|
||||
|
||||
/** log4j category */
|
||||
private static Logger log = Logger.getLogger(RoleDisseminator.class);
|
||||
private static final Logger log = Logger.getLogger(RoleDisseminator.class);
|
||||
|
||||
/**
|
||||
* DSpace Roles XML Namespace in JDOM form.
|
||||
@@ -377,7 +377,7 @@ public class RoleDisseminator implements PackageDisseminator
|
||||
{
|
||||
writer.writeEmptyElement(MEMBER_GROUP);
|
||||
writer.writeAttribute(ID, String.valueOf(member.getID()));
|
||||
writer.writeAttribute(NAME, PackageUtils.translateGroupNameForExport(context, member.getName()));
|
||||
writer.writeAttribute(NAME, exportMemberName);
|
||||
}
|
||||
}
|
||||
writer.writeEndElement();
|
||||
|
Reference in New Issue
Block a user