Commit 8eae54f7 authored by Brian Long's avatar Brian Long
Browse files

moved @see javadoc

parent 86d4d76e
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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));