[Libreoffice-commits] core.git: Branch 'feature/tiled-editing' - android/Bootstrap

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Mon Jan 12 18:51:00 PST 2015


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

New commits:
commit f25495fc3688d6ffeb3c9d089298ced5209af98b
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
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;
         }
 


More information about the Libreoffice-commits mailing list