Loading src/main/java/com/inteligr8/maven/aps/modeling/util/ArrayNodeObjectSorter.java +2 −1 Original line number Diff line number Diff line Loading @@ -48,10 +48,11 @@ public class ArrayNodeObjectSorter { * standard comparison. If it doesn't have a value, then it will sort to * the end of the array. * * @see ObjectNodeComparator * * @param arrayNode A JSON array of JSON objects. * @param jsonObjectFieldName A field in the JSON object elements. * @return true if any elements were moved/sorted; false if unchanged. * @see com.inteligr8.maven.aps.modeling.util.ObjectNodeComparator */ public boolean sort(ArrayNode arrayNode, String jsonObjectFieldName) { return this.sort(arrayNode, new ObjectNodeComparator(jsonObjectFieldName)); Loading Loading
src/main/java/com/inteligr8/maven/aps/modeling/util/ArrayNodeObjectSorter.java +2 −1 Original line number Diff line number Diff line Loading @@ -48,10 +48,11 @@ public class ArrayNodeObjectSorter { * standard comparison. If it doesn't have a value, then it will sort to * the end of the array. * * @see ObjectNodeComparator * * @param arrayNode A JSON array of JSON objects. * @param jsonObjectFieldName A field in the JSON object elements. * @return true if any elements were moved/sorted; false if unchanged. * @see com.inteligr8.maven.aps.modeling.util.ObjectNodeComparator */ public boolean sort(ArrayNode arrayNode, String jsonObjectFieldName) { return this.sort(arrayNode, new ObjectNodeComparator(jsonObjectFieldName)); Loading