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

Commit b918d671 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix a small typo from previous refactor in WireBuffer" into main

parents e9945067 46fa76c4
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);
        }
    }