1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-21 20:39:10 +02:00

specify the MLEM version that Invert will be moved

This commit is contained in:
Ell 2021-07-13 22:35:48 +02:00
parent a52b46dce9
commit 374d936be2

View file

@ -35,7 +35,7 @@ namespace MLEM.Extensions {
public static class ColorHelper {
/// <inheritdoc cref="ColorExtensions.Invert"/>
[Obsolete("This method has been moved to ColorExtensions.Invert")]
[Obsolete("This method has been moved to ColorExtensions.Invert in 5.1.0")]
public static Color Invert(this Color color) {
return ColorExtensions.Invert(color);
}