Replace deprecated isGroupPathName with isPathGroupName

Signed-off-by: Matt Liberty <[email protected]>
This commit is contained in:
Matt Liberty
2025-10-27 00:14:56 +00:00
parent 8df87e07a1
commit 254d090582
+1 -1
View File
@@ -258,7 +258,7 @@ endpoint_slack(const Pin *pin,
{ {
Sta *sta = Sta::sta(); Sta *sta = Sta::sta();
sta->ensureLibLinked(); sta->ensureLibLinked();
if (sta->isGroupPathName(path_group_name)) { if (sta->isPathGroupName(path_group_name)) {
Slack slack = sta->endpointSlack(pin, std::string(path_group_name), min_max); Slack slack = sta->endpointSlack(pin, std::string(path_group_name), min_max);
return sta->units()->timeUnit()->staToUser(slack); return sta->units()->timeUnit()->staToUser(slack);
} }