Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjokim committed Mar 28, 2016
1 parent d1bc247 commit 1218ff3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scouter.client/src/scouter/client/tags/TagCountView.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
import scouter.util.DateUtil;
import scouter.util.FormatUtil;
import scouter.util.LinkedMap;
import scouter.util.LinkedMap.ENTRY;
import scouter.util.LinkedMap.LinkedEntry;
import scouter.util.StringUtil;

public class TagCountView extends ViewPart {
Expand Down Expand Up @@ -692,9 +692,9 @@ private void drawStackCountGraph() {
cntTraceMap.clear();
float[] stackedValue = new float[1440];
LinkedMap<String, float[]> tempMap = new LinkedMap<String, float[]>();
Enumeration<ENTRY> entries = valueMap.entries();
Enumeration<LinkedEntry<String, float[]>> entries = valueMap.entries();
while (entries.hasMoreElements()) {
ENTRY entry = entries.nextElement();
LinkedEntry<String, float[]> entry = entries.nextElement();
String key = (String) entry.getKey();
float[] values = (float[]) entry.getValue();
for (int i = 0; i < values.length; i++) {
Expand All @@ -705,9 +705,9 @@ private void drawStackCountGraph() {
tempMap.putFirst(key, copiedArray);
}
long stime = DateUtil.yyyymmdd(date);
Enumeration<ENTRY> entries2 = tempMap.entries();
Enumeration<LinkedEntry<String, float[]>> entries2 = tempMap.entries();
while (entries2.hasMoreElements()) {
ENTRY entry = entries2.nextElement();
LinkedEntry<String, float[]> entry = entries2.nextElement();
String key = (String) entry.getKey();
float[] values = (float[]) entry.getValue();
Trace trace = getCountTrace(key);
Expand Down

0 comments on commit 1218ff3

Please sign in to comment.