Skip to content

Commit

Permalink
COF #10682 - Adjusting Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
JonSilvestrini committed Mar 27, 2020
1 parent 165cc86 commit c170986
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions src/main/java/com/google/maps/model/EncodedPolyline.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,35 +73,21 @@ public String toString() {
return String.format("[EncodedPolyline: %s]", points);
}

public int getWeight() {
return weight;
}

public void setWeight(int weight) {
public void weight(int weight) {
this.weight = weight;
}

public String getColor() {
return color;
}

public void setColor(String color) {
this.color = color;
}

public String getFillcolor() {
return fillcolor;
}

public void setFillcolor(String fillcolor) {
public void fillcolor(String fillcolor) {
this.fillcolor = fillcolor;
}

public boolean isGeodesic() {
return geodesic;
}

public void setGeodesic(boolean geodesic) {
public void geodesic(boolean geodesic) {
this.geodesic = geodesic;
}

Expand Down

0 comments on commit c170986

Please sign in to comment.