summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-06 10:55:16 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 14:12:27 +0200
commit77902a3cb2ab3af542e62253cc9f4dc12e099293 (patch)
treef2270b9d8da54ae53b9c99da6d82ecd7c755f837 /android
parent9b021e87e04f4ab294d8cefb5d54bfe29e1e85dd (diff)
Fixing '....'
Change-Id: Icf2a34500acc18b28f113c85366bf24edc6d20b9 Reviewed-on: https://gerrit.libreoffice.org/78695 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'android')
-rw-r--r--android/README2
-rw-r--r--android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/android/README b/android/README
index 4ebfab6594ff..2e2fe5a434e8 100644
--- a/android/README
+++ b/android/README
@@ -305,7 +305,7 @@ Which services are combined in the android lib is determined by
lo_dlneeds: Could not read ELF header of /data/data/org.libreoffice...libfoo.so
This (most likely) means that the install quietly failed, and that
-the file is truncated; check it out with adb shell ls -l /data/data/....
+the file is truncated; check it out with adb shell ls -l /data/data/...
* Startup details
diff --git a/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java b/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
index 063c75bf2158..032a8461a01b 100644
--- a/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
+++ b/android/source/src/java/org/libreoffice/LibreOfficeMainActivity.java
@@ -309,7 +309,7 @@ public class LibreOfficeMainActivity extends AppCompatActivity implements Settin
outputChannel = new FileOutputStream(mTempFile).getChannel();
long bytesTransferred = 0;
- // might not copy all at once, so make sure everything gets copied....
+ // might not copy all at once, so make sure everything gets copied...
while (bytesTransferred < inputChannel.size()) {
bytesTransferred += outputChannel.transferFrom(inputChannel, bytesTransferred, inputChannel.size());
}
@@ -898,7 +898,7 @@ public class LibreOfficeMainActivity extends AppCompatActivity implements Settin
source = Channels.newChannel(assetManager.open(fromAssetPath));
dest = new FileOutputStream(toPath).getChannel();
long bytesTransferred = 0;
- // might not copy all at once, so make sure everything gets copied....
+ // might not copy all at once, so make sure everything gets copied...
ByteBuffer buffer = ByteBuffer.allocate(4096);
while (source.read(buffer) > 0) {
buffer.flip();