Skip to content

Commit

Permalink
W-16093303: Use StringsCache for StagingFileRecord metricName
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzxu-crm committed Jun 29, 2024
1 parent e2b1223 commit d996f36
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*/
package com.demandware.carbonj.service.db.points;

import com.demandware.carbonj.service.strings.StringsCache;

public class StagingFileRecord
{
public final StagingFileSet fileName;
Expand Down Expand Up @@ -37,7 +39,7 @@ public class StagingFileRecord
metricName = null;
} else {
strValue = line.substring(idStart, idEnd);
metricName = line.substring(idEnd + 1);
metricName = StringsCache.get(line.substring(idEnd + 1));
}
}

Expand Down

0 comments on commit d996f36

Please sign in to comment.