Skip to content

Commit

Permalink
fix: fix SysGenProfilingFile error format
Browse files Browse the repository at this point in the history
  • Loading branch information
LinShunKang committed May 16, 2020
1 parent ed3ee29 commit 0212312
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ private static void writeProfilingInfo(MethodTagMaintainer tagMaintainer,
fileWriter.write(methodTag.getFullDesc());
fileWriter.write('=');

fileWriter.write(mostTimeThreshold + ':' + calOutThresholdCount(mostTimeThreshold));
fileWriter.write(mostTimeThreshold + ":" + calOutThresholdCount(mostTimeThreshold));
fileWriter.newLine();
}

Expand Down

0 comments on commit 0212312

Please sign in to comment.