Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a33803d authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am a1ee18f1: Merge "Increase PDU parts buffer size for performance reasons"

* commit 'a1ee18f1':
  Increase PDU parts buffer size for performance reasons
parents c30fdda0 a1ee18f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -765,7 +765,7 @@ public class PduPersister {
                        Log.v(TAG, "Saving data to: " + uri);
                    }

                    byte[] buffer = new byte[256];
                    byte[] buffer = new byte[8192];
                    for (int len = 0; (len = is.read(buffer)) != -1; ) {
                        os.write(buffer, 0, len);
                    }