I have just run across the same issue on Magento 1.6.2 - I apreciate the OP no longer wants an answer, however it may assist someone else in due course.
Assuming you just want to change output, and not adjust any calculations, then we can look at adjusting the output in template files (.phtml).
This has the simple advantage in that it does not effect anything else that may use the function.
With template hints on, and visiting the cart to see the output, we see that the template in use is:
frontend/base/default/template/tax/checkout/tax.phtml
and
frontend/base/default/template/tax/checkout/subtotal.phtml
As its in base, we will make a copy of these into local (I am assuming default/default) before we make any changes - So create frontend/default/default/template/tax/checkout/tax.phtml & frontend/default/default/template/tax/checkout/subtotal.phtml with the same content.
Then make the following edits in the files - in both cases commenting out the row currently producing output (just trace the logic if your settings are not he same as mine).
frontend/default/default/template/tax/checkout/tax.phtml (lines 46 to 55)
<!--<tr <?php if ($this->helper('tax')->displayFullSummary() && $_value!=0): ?> class="summary-total" onclick="expandDetails(this, '.summary-details-<?php echo $taxIter;?>')"<?php endif; ?>>
<td style="<?php echo $_style . 'display:none;' ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
<?php if ($this->helper('tax')->displayFullSummary()): ?>
<div class="summary-collapse"><?php echo $this->getTotal()->getTitle() ?></div>
<?php else: ?>
<?php echo $this->getTotal()->getTitle() ?>
<?php endif;?>
</td>
<td style="<?php echo $_style . 'display:none;' ?>" class="a-right"><?php echo $this->helper('checkout')->formatPrice($_value) ?></td>
-->
frontend/default/default/template/tax/checkout/subtotal.phtml (lines:48 to 57)
<?php else : ?>
<!--<tr>
<td style="<?php echo $this->getStyle() ?>" class="a-right" colspan="<?php echo $this->getColspan(); ?>">
<?php echo $this->getTotal()->getTitle() ?>
</td>
<td style="<?php echo $this->getStyle() ?>" class="a-right">
<?php echo $this->helper('checkout')->formatPrice($this->getTotal()->getValue()) ?>
</td>
</tr>-->
<?php endif;?>
There may be an underlying set up or logic issue to cause this output in the first place, however this method will supress the output you dont want.