remove deprecated and unused ColoredProcessHandler.textAvailable (IDEA-CR-52576)

GitOrigin-RevId: 8d056c0cafa0da21c9bedeac0f076595a0a451e7
This commit is contained in:
Sergey Simonchik
2019-09-25 08:31:20 +00:00
committed by intellij-monorepo-bot
parent 3053abb353
commit 93daca06dd
@@ -51,7 +51,7 @@ public class ColoredProcessHandler extends KillableProcessHandler implements Ans
*/
@Override
public void coloredTextAvailable(@NotNull String text, @NotNull Key attributes) {
textAvailable(text, attributes);
super.notifyTextAvailable(text, attributes);
}
/**
@@ -77,13 +77,4 @@ public class ColoredProcessHandler extends KillableProcessHandler implements Ans
}
});
}
/**
* @deprecated override {@link #coloredTextAvailable(String, Key)} instead
*/
@Deprecated
@ApiStatus.ScheduledForRemoval(inVersion = "2021")
protected void textAvailable(final String text, final Key attributes) {
super.notifyTextAvailable(text, attributes);
}
}
}