equal
deleted
inserted
replaced
538 * array form, where each range is represented as <CODE>"<I>i</I>"</CODE> if |
538 * array form, where each range is represented as <CODE>"<I>i</I>"</CODE> if |
539 * the lower bound equals the upper bound or |
539 * the lower bound equals the upper bound or |
540 * <CODE>"<I>i</I>-<I>j</I>"</CODE> otherwise. |
540 * <CODE>"<I>i</I>-<I>j</I>"</CODE> otherwise. |
541 */ |
541 */ |
542 public String toString() { |
542 public String toString() { |
543 StringBuffer result = new StringBuffer(); |
543 StringBuilder result = new StringBuilder(); |
544 int n = members.length; |
544 int n = members.length; |
545 for (int i = 0; i < n; i++) { |
545 for (int i = 0; i < n; i++) { |
546 if (i > 0) { |
546 if (i > 0) { |
547 result.append (','); |
547 result.append (','); |
548 } |
548 } |