444547 Format exception in ResourceCache.Content.toString()

This commit is contained in:
Jan Bartel 2014-09-19 10:28:33 +10:00
parent c7c9d49a51
commit 059f5e2396
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ public class ResourceCache
@Override
public String toString()
{
return String.format("CachedContent@%x{r=%s,e=%b,lm=%d,ct=%s}",hashCode(),_resource,_resource.exists(),BufferUtil.toString(_lastModifiedBytes),_contentType);
return String.format("CachedContent@%x{r=%s,e=%b,lm=%s,ct=%s}",hashCode(),_resource,_resource.exists(),BufferUtil.toString(_lastModifiedBytes),_contentType);
}
}
}