Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ protected static final int parseInt(int num, String digitChars, int start, int e
num = (num * 10) + (digitChars.charAt(start) - '0');
}
}
}
}
}
}
}
Expand Down Expand Up @@ -1255,7 +1255,7 @@ public void expand()
int oldLen = old.length;
int newSize = calcNewSize(oldLen);
mResult = new int[newSize];
System.arraycopy(old, mStart, mResult, 0, oldLen);
System.arraycopy(old, mStart, mResult, 0, mCount);
mStart = 0;
mEnd = newSize;
}
Expand Down Expand Up @@ -1315,7 +1315,7 @@ public void expand()
int oldLen = old.length;
int newSize = calcNewSize(oldLen);
mResult = new long[newSize];
System.arraycopy(old, mStart, mResult, 0, oldLen);
System.arraycopy(old, mStart, mResult, 0, mCount);
mStart = 0;
mEnd = newSize;
}
Expand Down Expand Up @@ -1373,7 +1373,7 @@ public void expand()
int oldLen = old.length;
int newSize = calcNewSize(oldLen);
mResult = new float[newSize];
System.arraycopy(old, mStart, mResult, 0, oldLen);
System.arraycopy(old, mStart, mResult, 0, mCount);
mStart = 0;
mEnd = newSize;
}
Expand Down Expand Up @@ -1431,7 +1431,7 @@ public void expand()
int oldLen = old.length;
int newSize = calcNewSize(oldLen);
mResult = new double[newSize];
System.arraycopy(old, mStart, mResult, 0, oldLen);
System.arraycopy(old, mStart, mResult, 0, mCount);
mStart = 0;
mEnd = newSize;
}
Expand Down