--- a/Allura/allura/ext/admin/admin_main.py
+++ b/Allura/allura/ext/admin/admin_main.py
@@ -329,11 +329,6 @@
thumbnail_meta=dict(project_id=c.project._id,category='icon'))
g.post_event('project_updated')
redirect('overview')
-
- @expose('json:')
- def get_trove_children(self, trove_id, **kw):
- cats = M.TroveCategory.query.find(dict(trove_parent_id=int(trove_id))).sort('fullname').all()
- return dict(cats = [dict(id=c.trove_cat_id,label=c.fullname) for c in cats])
def _add_trove(self, type, new_trove):
current_troves = getattr(c.project,'trove_%s'%type)