Merge pull request #594 from Scrumplex/fix-support-split-natives

Support Mojang's new split natives
This commit is contained in:
Sefa Eyeoglu
2022-05-19 17:42:17 +02:00
committed by GitHub

View File

@@ -124,7 +124,7 @@ struct GradleSpecifier
} }
bool matchName(const GradleSpecifier & other) const bool matchName(const GradleSpecifier & other) const
{ {
return other.artifactId() == artifactId() && other.groupId() == groupId(); return other.artifactId() == artifactId() && other.groupId() == groupId() && other.classifier() == classifier();
} }
bool operator==(const GradleSpecifier & other) const bool operator==(const GradleSpecifier & other) const
{ {