Here you can find the source of sort(int[] array)
public static void sort(int[] array)
//package com.java2s; //License from project: Apache License import java.util.Arrays; public class Main { public static void sort(int[] array) { Arrays.sort(array);//from w w w .j a va2s. c o m } }