Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.google.android.gms.maps.model;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public final class Dash extends PatternItem {
|
||||
public final float length;
|
||||
|
||||
public Dash(float f) {
|
||||
super(0, Float.valueOf(Math.max(f, 0.0f)));
|
||||
this.length = Math.max(f, 0.0f);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.model.PatternItem
|
||||
public String toString() {
|
||||
return "[Dash: length=" + this.length + "]";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user