deserializeColor function

Color deserializeColor (int data)

Implementation

Color deserializeColor(int data) {
  return new Color(data);
}