summaryrefslogtreecommitdiffstats
path: root/src/com
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2010-11-15 11:30:05 -0800
committerAdam Cohen <adamcohen@google.com>2010-11-15 11:30:05 -0800
commiteed565d5126cb40b2a7ecdf5f6e8ac7a7464007b (patch)
treedc4ecec31e960a71d5632a3fe67c2a2fbd2c6f9e /src/com
parentcbbaf9862aa160c5e397cb49b554de20981a35fe (diff)
downloadandroid_packages_apps_Trebuchet-eed565d5126cb40b2a7ecdf5f6e8ac7a7464007b.tar.gz
android_packages_apps_Trebuchet-eed565d5126cb40b2a7ecdf5f6e8ac7a7464007b.tar.bz2
android_packages_apps_Trebuchet-eed565d5126cb40b2a7ecdf5f6e8ac7a7464007b.zip
Whitespace fix
Change-Id: Ia6b328defddc002ea0acb028d452bdd97ed3d4cc
Diffstat (limited to 'src/com')
-rw-r--r--src/com/android/launcher2/Workspace.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/launcher2/Workspace.java b/src/com/android/launcher2/Workspace.java
index 61b7c4b5b..82fd362ed 100644
--- a/src/com/android/launcher2/Workspace.java
+++ b/src/com/android/launcher2/Workspace.java
@@ -883,8 +883,8 @@ public class Workspace extends SmoothPagedView
private class ZInterpolator implements TimeInterpolator {
private final float focalLength = 0.2f;
- public float getInterpolation(float input) {
- return (1.0f - focalLength / (focalLength + input)) /
+ public float getInterpolation(float input) {
+ return (1.0f - focalLength / (focalLength + input)) /
(1.0f - focalLength / (focalLength + 1.0f));
}
}