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

Commit 46fa76c4 authored by Pinyao Ting's avatar Pinyao Ting
Browse files

Fix a small typo from previous refactor in WireBuffer

Bug: 327454384
Change-Id: I993257f6cb0fc6830436d7c10c12aaa76a256ac6
Test: atest RemoteViewsTest
parent 9b5907be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ public class WireBuffer {
        mIndex = 0;
        mStartingIndex = 0;
        mSize = 0;
        if (expectedSize > mMaxSize) {
        if (expectedSize >= mMaxSize) {
            resize(expectedSize);
        }
    }