diff --git a/platform/commonUI/edit/src/ToolbarRepresenter.js b/platform/commonUI/edit/src/ToolbarRepresenter.js deleted file mode 100644 index 97a424fc83..0000000000 --- a/platform/commonUI/edit/src/ToolbarRepresenter.js +++ /dev/null @@ -1,37 +0,0 @@ -/*global define*/ - -define( - [], - function () { - - function ToolbarRepresenter(scope, element, attrs) { - var parent = scope.$parent; - - function represent(domainObject, representation) { - // New domain object, clear out the tool bar - parent.toolbar = {}; - scope.toolbar = parent.toolbar; - } - - return { - /** - * Set the current representation in use, and the domain - * object being represented. - * - * @param {RepresentationDefinition} representation the - * definition of the representation in use - * @param {DomainObject} domainObject the domain object - * being represented - */ - represent: represent, - /** - * Release any resources associated with this representer. - */ - destroy: function () {} - }; - } - - return ToolbarRepresenter; - - } -); \ No newline at end of file