Commit 8f104054 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed display of Percent Used for unlimited caches.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8676 b35dd754-fafc-0310-a699-88a17e54d16e
parent 09d63f6d
......@@ -199,7 +199,11 @@
<%= mbFormat.format(memUsed)%> MB
</td>
<td class="c3">
<%= percentFormat.format(usedMem)%>%
<% if (cache.getMaxCacheSize() != -1 && cache.getMaxCacheSize() != Integer.MAX_VALUE) { %>
<%= percentFormat.format(usedMem)%>%
<% } else { %>
N/A
<% } %>
</td>
<td class="c4">
<%= hitPercent%>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment