[Creation] Use identifierService

...from CreationCapability.
This commit is contained in:
Victor Woeltjen
2015-11-06 13:10:51 -08:00
parent d8f3f0f430
commit 06436bb876
3 changed files with 11 additions and 12 deletions

View File

@@ -35,7 +35,7 @@ define(
IdentifierProvider.prototype.generate = function (space) {
var id = uuid();
if (arguments.length > 0) {
if (space !== undefined) {
id = space + ":" + id;
}
return id;