diff src/implab/di/ActivationContext.js @ 3:00779cb63b12

formatting
author cin
date Tue, 06 Jun 2017 19:45:32 +0300
parents fc2517695ee1
children f750c89976d3
line wrap: on
line diff
--- a/src/implab/di/ActivationContext.js	Fri Jun 02 19:28:20 2017 +0300
+++ b/src/implab/di/ActivationContext.js	Tue Jun 06 19:45:32 2017 +0300
@@ -60,7 +60,7 @@
             clone: function () {
                 return new Context(
                     this.container,
-                    safe.create(this._services),
+                    Object.create(this._services),
                     this._cache,
                     this._visited
                 );
@@ -123,7 +123,7 @@
                     scope: this._services
                 });
                 if (localize)
-                    this._services = safe.create(this._services);
+                    this._services = Object.create(this._services);
             },
 
             leave: function () {