Point Color is a String

Issue #34 resolved
Former user created an issue

Point Color is a string it could easily be an int instead, and parsing would not be necessary.

public int getColor() {
    return color != null ? color : 0xFF33B5E5;
}

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

Comments (1)

  1. Log in to comment