001package com.plivo.api.serializers;
002
003/**
004 * Unfortunately, this needs to exist due to how the @JsonSerialize(with) annotation works.
005 */
006public class CommaDelimitedListSerializer extends DelimitedListSerializer {
007
008  CommaDelimitedListSerializer() {
009    super(",");
010  }
011}