You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2008/10/24 12:01:47 UTC

svn commit: r707594 - /felix/trunk/webconsole/src/main/resources/res/ui/packages.js

Author: cziegeler
Date: Fri Oct 24 03:01:46 2008
New Revision: 707594

URL: http://svn.apache.org/viewvc?rev=707594&view=rev
Log:
Remove unused function.

Modified:
    felix/trunk/webconsole/src/main/resources/res/ui/packages.js

Modified: felix/trunk/webconsole/src/main/resources/res/ui/packages.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/packages.js?rev=707594&r1=707593&r2=707594&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/packages.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/packages.js Fri Oct 24 03:01:46 2008
@@ -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%'>" );