Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,24 @@
package com.google.maps.android.data.kml;
import com.google.maps.android.data.Geometry;
import java.util.ArrayList;
import java.util.Iterator;
/* JADX INFO: loaded from: classes2.dex */
public class KmlMultiTrack extends KmlMultiGeometry {
public KmlMultiTrack(ArrayList<KmlTrack> arrayList) {
super(createGeometries(arrayList));
}
private static ArrayList<Geometry> createGeometries(ArrayList<KmlTrack> arrayList) {
ArrayList<Geometry> arrayList2 = new ArrayList<>();
if (arrayList == null) {
throw new IllegalArgumentException("Tracks cannot be null");
}
Iterator<KmlTrack> it = arrayList.iterator();
while (it.hasNext()) {
arrayList2.add(it.next());
}
return arrayList2;
}
}