Skip to content

Commit

Permalink
BZ-1194732 - EJB jBPM application throws an exception when trying to …
Browse files Browse the repository at this point in the history
…access asset-mgmt deployment - fixed typo
  • Loading branch information
mswiderski committed Feb 23, 2015
1 parent ae93042 commit 3e15568
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -240,10 +240,10 @@ protected Map<String, String> getEntryAttributes(String attributes) {
return attributeMap; return attributeMap;
} }


protected String buildEntryAttributes(Map<String, String> attribtues) { protected String buildEntryAttributes(Map<String, String> attributes) {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
if (attribtues != null && !attribtues.isEmpty()) { if (attributes != null && !attributes.isEmpty()) {
for (Entry<String, String> entry : attribtues.entrySet()) { for (Entry<String, String> entry : attributes.entrySet()) {
builder.append(entry.getKey() + "=" + entry.getValue() + ";"); builder.append(entry.getKey() + "=" + entry.getValue() + ";");
} }
builder.deleteCharAt(builder.length()-1); builder.deleteCharAt(builder.length()-1);
Expand Down

0 comments on commit 3e15568

Please sign in to comment.