Remove unnecessary cloning.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=125454697
This commit is contained in:
eguven 2016-06-21 08:38:11 -07:00 committed by Oliver Woodman
parent 6376f3a898
commit 0139f3f276

View File

@ -57,7 +57,7 @@ public final class TrackSelection {
* @return The index of the selected track.
*/
public int getTrack(int index) {
return getTracks()[index];
return tracks[index];
}
/**