Hi, I was investigating some performance bottlenecks of an application and interestingly this array allocation appears to be on the on the hotpath. On this 5 minute scan, PathParser.fastPathBuild was responsible for ~6.15% of the 1.23GB object array allocation of the system.
When checking, it seems that the array is allocated but never used. seems like its usage was dropped as of this commit, but it was left there. Is that the case?

Hi, I was investigating some performance bottlenecks of an application and interestingly this array allocation appears to be on the on the hotpath. On this 5 minute scan,
PathParser.fastPathBuildwas responsible for ~6.15% of the 1.23GB object array allocation of the system.When checking, it seems that the array is allocated but never used. seems like its usage was dropped as of this commit, but it was left there. Is that the case?