Remove unused function.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@707594 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/res/ui/packages.js b/webconsole/src/main/resources/res/ui/packages.js
index 2a895b7..be87a8e 100644
--- a/webconsole/src/main/resources/res/ui/packages.js
+++ b/webconsole/src/main/resources/res/ui/packages.js
@@ -15,26 +15,6 @@
  * limitations under the License.
  */
 
-function renderDataTable( /* Array of Data Objects */ components )
-{
-    // number of actions plus 3 -- id, name and state
-    var columns = components.numActions + 3;
-    
-    header( columns );
-
-    if (components.error)
-    {
-        error( columns, components.error );
-    }
-    else
-    {
-        data ( components.data );
-    }
-
-    footer( columns );
-}
-
-
 function header( /* int */ columns )
 {
     document.write( "<table class='content' cellpadding='0' cellspacing='0' width='100%'>" );