mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Simplified usages
This commit is contained in:
@@ -20,7 +20,7 @@ namespace Microsoft.Iris.Render
|
||||
AnimationInput value,
|
||||
AnimationInterpolation interpolation)
|
||||
{
|
||||
Debug2.Validate((double)time >= 0.0, typeof(ArgumentException), "'time' must not be negative");
|
||||
Debug2.Validate(time >= 0.0, typeof(ArgumentException), "'time' must not be negative");
|
||||
Debug2.Validate(value != null, typeof(ArgumentNullException), nameof(value));
|
||||
Debug2.Validate(interpolation != null, typeof(ArgumentNullException), nameof(interpolation));
|
||||
this.m_time = time;
|
||||
|
||||
Reference in New Issue
Block a user