[API] Providers get with identifier

Providers fetch objects using a full identifier.  This ensures a consistent
interface.

Related to https://github.com/nasa/openmct/issues/1279
This commit is contained in:
Pete Richards 2016-10-27 11:58:01 -07:00
parent 81de6119fe
commit d813029046

View File

@ -150,10 +150,6 @@ define([
throw new Error('Provider does not support [' + method + '].');
}
if (method === 'get') {
return provider.get(identifier.key);
}
return provider[method].apply(provider, arguments);
};
});