summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/entity.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-03-14 14:26:14 +0100
committerPetr Vobornik <pvoborni@redhat.com>2013-05-06 16:22:19 +0200
commit3e392bbfc66e10349b3205d25039a6619a64a29d (patch)
tree0553314dd841e4a1b96d2c1fee2d67ce6b5a53df /install/ui/src/freeipa/entity.js
parent166102a910bad2002819205b009694372f1f0e22 (diff)
downloadfreeipa-3e392bbfc66e10349b3205d25039a6619a64a29d.tar.gz
freeipa-3e392bbfc66e10349b3205d25039a6619a64a29d.tar.xz
freeipa-3e392bbfc66e10349b3205d25039a6619a64a29d.zip
get_primary_key function usages removed
https://fedorahosted.org/freeipa/ticket/3236
Diffstat (limited to 'install/ui/src/freeipa/entity.js')
-rw-r--r--install/ui/src/freeipa/entity.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/install/ui/src/freeipa/entity.js b/install/ui/src/freeipa/entity.js
index ee5cbdfd9..36fadf1ce 100644
--- a/install/ui/src/freeipa/entity.js
+++ b/install/ui/src/freeipa/entity.js
@@ -163,20 +163,6 @@ IPA.entity = function(spec) {
return that;
};
- that.get_primary_key_prefix = function(facet) {
- window.console.log('Obsolete function usage: entity.get_primary_key_prefix');
- var prefix = that.get_primary_key(facet);
- prefix.pop();
- return prefix;
- };
-
- that.get_primary_key = function(facet) {
- window.console.log('Obsolete function usage: entity.get_primary_key');
- facet = facet || that.facet;
- var pkeys = facet.get_pkeys();
- return pkeys;
- };
-
that.entity_init = that.init;
return that;