From 837c3db49e83d7e507d3b7eb355c0cc64d86fc2d Mon Sep 17 00:00:00 2001 From: generatedunixname89002005287564 Date: Tue, 10 Mar 2020 05:37:12 -0700 Subject: [PATCH] Daily `arc lint --take GOOGLEJAVAFORMAT` Reviewed By: zertosh Differential Revision: D20360867 fbshipit-source-id: 737748733ff6826b2f20760fcb301988ff46e278 --- .../react/animated/NativeAnimatedModule.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java b/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java index 0bdba5d6cca..919b5a5f16e 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java +++ b/ReactAndroid/src/main/java/com/facebook/react/animated/NativeAnimatedModule.java @@ -58,12 +58,12 @@ import java.util.ArrayList; * stores a mapping from the view properties to the corresponding animated values (so it's actually * also a node with connections to the value nodes). * - *

Last "special" elements of the graph are "animation drivers". Those are objects - * (represented as a graph nodes too) that based on some criteria updates attached values every - * frame (we have few types of those, e.g., spring, timing, decay). Animation objects can be - * "started" and "stopped". Those are like "pulse generators" for the rest of the nodes graph. Those - * pulses then propagate along the graph to the children nodes up to the special node type: - * AnimatedProps which then can be used to calculate property update map for a view. + *

Last "special" elements of the graph are "animation drivers". Those are objects (represented + * as a graph nodes too) that based on some criteria updates attached values every frame (we have + * few types of those, e.g., spring, timing, decay). Animation objects can be "started" and + * "stopped". Those are like "pulse generators" for the rest of the nodes graph. Those pulses then + * propagate along the graph to the children nodes up to the special node type: AnimatedProps which + * then can be used to calculate property update map for a view. * *

This class acts as a proxy between the "native" API that can be called from JS and the main * class that coordinates all the action: {@link NativeAnimatedNodesManager}. Since all the methods