From 9e4c87be31732ed076a059128d2e20451697d225 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 29 Sep 2015 17:42:11 +0200 Subject: Fix typos Change-Id: Ie0e941d48457d758525353d6c5cf858652f86fd3 Reviewed-on: https://gerrit.libreoffice.org/18938 Reviewed-by: Samuel Mehrbrodt Tested-by: Samuel Mehrbrodt --- android/source/src/java/org/libreoffice/LOKitThread.java | 4 ++-- android/source/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'android') diff --git a/android/source/src/java/org/libreoffice/LOKitThread.java b/android/source/src/java/org/libreoffice/LOKitThread.java index 0da9681b93c1..a762184954e6 100644 --- a/android/source/src/java/org/libreoffice/LOKitThread.java +++ b/android/source/src/java/org/libreoffice/LOKitThread.java @@ -16,9 +16,9 @@ import java.util.ArrayList; import java.util.List; import java.util.concurrent.LinkedBlockingQueue; -/** +/* * Thread that communicates with LibreOffice through LibreOfficeKit JNI interface. The thread - * consumes events from other threads (maininly the UI thread) and acts accordingly. + * consumes events from other threads (mainly the UI thread) and acts accordingly. */ public class LOKitThread extends Thread { private static final String LOGTAG = LOKitThread.class.getSimpleName(); diff --git a/android/source/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java b/android/source/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java index bb6e3d04e4fb..389a50f07b1e 100644 --- a/android/source/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java +++ b/android/source/src/java/org/mozilla/gecko/gfx/GeckoLayerClient.java @@ -37,7 +37,7 @@ public class GeckoLayerClient implements PanZoomTarget { * Specifically: * 1) reading mViewportMetrics from any thread is fine without synchronization * 2) writing to mViewportMetrics requires synchronizing on the layer controller object - * 3) whenver reading multiple fields from mViewportMetrics without synchronization (i.e. in + * 3) whenever reading multiple fields from mViewportMetrics without synchronization (i.e. in * case 1 above) you should always frist grab a local copy of the reference, and then use * that because mViewportMetrics might get reassigned in between reading the different * fields. */ @@ -356,4 +356,4 @@ public class GeckoLayerClient implements PanZoomTarget { mLowResLayer.invalidateTiles(tilesToInvalidate, rect); mRootLayer.invalidateTiles(tilesToInvalidate, rect); } -} \ No newline at end of file +} -- cgit