[DependencySubstitution] cleanup: mismatching name in toString: DependencySubstitutionId vs LibrarySubstitutionId

### Code Reviews
  * IJ-CR-164983

### Issues
  * IDEA-370483 Maven performance degradation related to library dependency substitution

GitOrigin-RevId: 8b3d23b8a1edd27fd0985f18e79fe74159be0faf
This commit is contained in:
Sergei Vorobyov
2025-06-16 10:24:59 +02:00
committed by intellij-monorepo-bot
parent b69ce769b4
commit 5b06b389df

View File

@@ -40,6 +40,6 @@ class DependencySubstitutionId(
}
override fun toString(): String {
return "LibrarySubstitutionId(owner=$owner, substitution=$module, scope=$scope)"
return "DependencySubstitutionId(owner=$owner, substitution=$module, scope=$scope)"
}
}