Skip to content

Commit

Permalink
Merge pull request #2115 from mstruk/typo
Browse files Browse the repository at this point in the history
Fix typo bug introduced during modules refactoring
  • Loading branch information
patriot1burke committed Jan 26, 2016
2 parents b36a4be + 5c46f06 commit 527edf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void addCredential(ModelNode operation, ModelNode model) {
}

String credentialName = credentialNameFromOp(operation);
if (!credentialName.contains("")) {
if (!credentialName.contains(".")) {
credentials.get(credentialName).set(model.get("value").asString());
} else {
String[] parts = credentialName.split("\\.");
Expand Down

0 comments on commit 527edf8

Please sign in to comment.