moved @see javadoc

This commit is contained in:
2022-10-10 22:28:27 -04:00
parent 86d4d76e54
commit 8eae54f753

View File

@@ -48,10 +48,11 @@ public class ArrayNodeObjectSorter {
* standard comparison. If it doesn't have a value, then it will sort to * standard comparison. If it doesn't have a value, then it will sort to
* the end of the array. * the end of the array.
* *
* @see ObjectNodeComparator
*
* @param arrayNode A JSON array of JSON objects. * @param arrayNode A JSON array of JSON objects.
* @param jsonObjectFieldName A field in the JSON object elements. * @param jsonObjectFieldName A field in the JSON object elements.
* @return true if any elements were moved/sorted; false if unchanged. * @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) { public boolean sort(ArrayNode arrayNode, String jsonObjectFieldName) {
return this.sort(arrayNode, new ObjectNodeComparator(jsonObjectFieldName)); return this.sort(arrayNode, new ObjectNodeComparator(jsonObjectFieldName));