summaryrefslogtreecommitdiff
path: root/ElmSharp/ElmSharp/EcoreAnimator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ElmSharp/ElmSharp/EcoreAnimator.cs')
-rw-r--r--ElmSharp/ElmSharp/EcoreAnimator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ElmSharp/ElmSharp/EcoreAnimator.cs b/ElmSharp/ElmSharp/EcoreAnimator.cs
index 05ab8ed..200155f 100644
--- a/ElmSharp/ElmSharp/EcoreAnimator.cs
+++ b/ElmSharp/ElmSharp/EcoreAnimator.cs
@@ -65,7 +65,7 @@ namespace ElmSharp
int task_id = (int)userData;
Func<bool> userAction = null;
_taskMap.TryGetValue(task_id, out userAction);
- return (userAction != null)?userAction():false;
+ return (userAction != null) ? userAction() : false;
}
}