Another tiny optimization in CI_Table + remove an accidental addition
diff --git a/system/libraries/Table.php b/system/libraries/Table.php
index 1a3aa9a..79632b3 100644
--- a/system/libraries/Table.php
+++ b/system/libraries/Table.php
@@ -138,13 +138,12 @@
 	 *
 	 * Can be passed as an array or discreet params
 	 *
-	 * @param	mixed	$array
+	 * @param	mixed
 	 * @return	CI_Table
 	 */
-	public function set_heading($args = array(), $attributes = array())
+	public function set_heading($args = array())
 	{
-		$args = func_get_args();
-		$this->heading = $this->_prep_args($args);
+		$this->heading = $this->_prep_args(func_get_args());
 		return $this;
 	}
 
@@ -224,8 +223,7 @@
 	 */
 	public function add_row($args = array())
 	{
-		$args = func_get_args();
-		$this->rows[] = $this->_prep_args($args);
+		$this->rows[] = $this->_prep_args(func_get_args());
 		return $this;
 	}