114115116117118119120121122123124
sb.append(data[2]); sb.append('\n'); fileWriter.append(sb.toString()); } fileWriter.flushAppend(); profilerData.clear(); } fileWriter.append("=\n"); fileWriter.flushAppend(); } }
129130131132133134135136137
for (int index = 0; index < threadProfile.length; index++) { ThreadData profilerData = threadProfile[index]; if (profilerData == null) { continue; } profilerData.clear(); } } }