[local history] Deprecate Change#affectsMatching(Pattern)

GitOrigin-RevId: 22ad13de6ef75b879b6a4bdebc1179f7dfbe8ef8
This commit is contained in:
Ilia.Shulgin
2024-07-31 16:12:18 +02:00
committed by intellij-monorepo-bot
parent 7f4f99ace6
commit fb6e611d7a

View File

@@ -50,6 +50,10 @@ public abstract class Change {
public abstract boolean affectsProject(String projectId);
/**
* @deprecated Use {@link Change#affectsMatching(MinusculeMatcher)} instead.
*/
@Deprecated
public abstract boolean affectsMatching(@NotNull Pattern pattern);
public abstract boolean affectsMatching(@NotNull MinusculeMatcher matcher);