Skip to content

Commit c170986

Browse files
COF #10682 - Adjusting Google Java Format
1 parent 165cc86 commit c170986

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

src/main/java/com/google/maps/model/EncodedPolyline.java

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -73,35 +73,21 @@ public String toString() {
7373
return String.format("[EncodedPolyline: %s]", points);
7474
}
7575

76-
public int getWeight() {
77-
return weight;
78-
}
79-
80-
public void setWeight(int weight) {
76+
public void weight(int weight) {
8177
this.weight = weight;
8278
}
8379

84-
public String getColor() {
85-
return color;
86-
}
87-
8880
public void setColor(String color) {
8981
this.color = color;
9082
}
9183

92-
public String getFillcolor() {
93-
return fillcolor;
94-
}
9584

96-
public void setFillcolor(String fillcolor) {
85+
public void fillcolor(String fillcolor) {
9786
this.fillcolor = fillcolor;
9887
}
9988

100-
public boolean isGeodesic() {
101-
return geodesic;
102-
}
10389

104-
public void setGeodesic(boolean geodesic) {
90+
public void geodesic(boolean geodesic) {
10591
this.geodesic = geodesic;
10692
}
10793

0 commit comments

Comments
 (0)