Skip to content

Commit

Permalink
tinny code optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
bmscomp committed Oct 5, 2023
1 parent 0ba2ee8 commit f6431cb
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ public void sendAnalytics(TrackEventType trackEventType,
File localBuildDir) {
final long start = System.currentTimeMillis();

final Map<String, Object> buildInfo = new HashMap<>();
buildInfo.putAll(graalVMInfo);
final Map<String, Object> buildInfo = new HashMap<>(graalVMInfo);
buildInfo.put(MAVEN_VERSION, runtimeInformation.getMavenVersion());
analyticsService.sendAnalytics(trackEventType, applicationModel, buildInfo, localBuildDir);

Expand Down

0 comments on commit f6431cb

Please sign in to comment.