diff --git a/red/runtime/nodes/context/index.js b/red/runtime/nodes/context/index.js index 57fc3a747..02f5a933d 100644 --- a/red/runtime/nodes/context/index.js +++ b/red/runtime/nodes/context/index.js @@ -178,21 +178,6 @@ function createContext(id,seed) { return context.keysAsync(scope); } }; - obj.getAsync = function(key) { - var keyPath = parseKey(key); - var context = getContextStorage(keyPath.storage); - return context.getAsync(scope, keyPath.key); - }; - obj.setAsync = function(key, value) { - var keyPath = parseKey(key); - var context = getContextStorage(keyPath.storage); - return context.setAsync(scope, keyPath.key, value); - }; - obj.keysAsync = function(storage) { - var storageName = parseStorage(storage); - var context = getContextStorage(storageName); - return context.keysAsync(scope); - }; return obj; }