Skip to content

Commit

Permalink
Fix ToStringBuilder.reflectionToString - Wrong JSON format when objec…
Browse files Browse the repository at this point in the history
…t has a List of Enum
  • Loading branch information
TranNgocKhoa committed Jun 1, 2020
1 parent bc2b9c2 commit fa7b359
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
*/
package org.apache.commons.lang3.builder;

import org.apache.commons.lang3.ClassUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.commons.lang3.StringUtils;

import java.io.Serializable;
import java.lang.reflect.Array;
import java.util.Collection;
import java.util.Map;
import java.util.WeakHashMap;

import org.apache.commons.lang3.ClassUtils;
import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.commons.lang3.StringUtils;

/**
* <p>Controls {@code String} formatting for {@link ToStringBuilder}.
* The main public interface is always via {@code ToStringBuilder}.</p>
Expand Down

0 comments on commit fa7b359

Please sign in to comment.