android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java |    2 --
 1 file changed, 2 deletions(-)

New commits:
commit f25495fc3688d6ffeb3c9d089298ced5209af98b
Author: Tomaž Vajngerl <[email protected]>
Date:   Mon Jan 12 20:51:07 2015 +0900

    android: remove logging null in DirectBufferAllocator
    
    Change-Id: Iad6b90782f4f750eeab420653ed6701fbba9a777

diff --git 
a/android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java 
b/android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java
index 590adae..0e30e45 100644
--- a/android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java
+++ b/android/Bootstrap/src/org/libreoffice/kit/DirectBufferAllocator.java
@@ -50,7 +50,6 @@ public final class DirectBufferAllocator {
 
     private static ByteBuffer freeJNI(ByteBuffer buffer) {
         if (buffer == null) {
-            Log.i(LOGTAG, "ByteBuffer is null");
             return null;
         }
 
@@ -79,7 +78,6 @@ public final class DirectBufferAllocator {
 
     private static ByteBuffer freeVM(ByteBuffer buffer) {
         if (buffer == null) {
-            Log.i(LOGTAG, "ByteBuffer is null");
             return null;
         }
 
_______________________________________________
Libreoffice-commits mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to