summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-03-01 00:36:21 +0200
committerTor Lillqvist <tml@iki.fi>2013-03-01 00:37:20 +0200
commit043f614a3e6e68c26f2f4af609e6b2701e368156 (patch)
tree9cf493c062de134ea6227c6f5486073ae10b7657 /android
parente63165c685e96acb7939b15db61328eef79ff920 (diff)
Bin some unnecessarily verbose logging
Change-Id: I9c9b2a5405f994f180bd51a3a6c91815d0f70435
Diffstat (limited to 'android')
-rw-r--r--android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
index 997a94263c9f..d4ded73ede61 100644
--- a/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
+++ b/android/experimental/desktop/src/org/libreoffice/experimental/desktop/Desktop.java
@@ -232,7 +232,6 @@ public class Desktop
return super.onTouchEvent(event);
super.onTouchEvent(event);
- Log.d(TAG, "onTouch (" + event.getX() + "," + event.getY() + ")");
// Just temporary hack. We should not show the keyboard
// unconditionally on a ACTION_UP event here. The LO level
@@ -261,8 +260,6 @@ public class Desktop
}
@Override public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
- Log.d(TAG, "onCreateInputConnection");
-
BaseInputConnection fic = new LOInputConnection(this, true);
outAttrs.actionLabel = null;
outAttrs.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS;
@@ -272,7 +269,6 @@ public class Desktop
}
@Override public boolean onCheckIsTextEditor() {
- Log.d(TAG, "onCheckIsTextEditor");
return renderedOnce;
}
}
@@ -285,7 +281,6 @@ public class Desktop
}
@Override public boolean commitText(CharSequence text, int newCursorPosition) {
- Log.i(TAG, "commitText(" + text + ", " + newCursorPosition + ")");
for (int i = 0; i < text.length(); i++) {
Desktop.key(text.charAt(i), Desktop.getTimestamp());
}