// Assume for now that this will be the result.
result = headers;
// Check to see if we actually need to localize anything
boolean localize = false;
for (Iterator it = headers.values().iterator(); !localize && it.hasNext(); )
{
if (((String) it.next()).startsWith("%"))
{
localize = true;
}