diff options
author | Noel Grandin <noel@peralex.com> | 2015-06-12 09:30:14 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-06-15 08:45:19 +0000 |
commit | 0c18bedb7328493040c1a20822b345e624d6041f (patch) | |
tree | 2f7fb01b21a63ceef52f05035bc047173ea46785 /android/source/src | |
parent | 8b85838611ed448ef18a9e4982849bbd702981aa (diff) |
java: 'final static' to 'static final'
this is the canonical order, and it makes the code easier to read
Change-Id: I272e7f1e140296e582702b6dbf77a03eefb65470
Reviewed-on: https://gerrit.libreoffice.org/16242
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: David Ostrovsky <david@ostrovsky.org>
Diffstat (limited to 'android/source/src')
-rw-r--r-- | android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java b/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java index eac6b1bb4143..6765928312cc 100644 --- a/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java +++ b/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java @@ -111,7 +111,7 @@ public class JavaPanZoomController mTouchEventHandler.destroy(); } - private final static float easeOut(float t) { + private static final float easeOut(float t) { // ease-out approx. // -(t-1)^2+1 t = t-1; |