Here you can find the source of min(int a, int b)
private static int min(int a, int b)
//package com.java2s; //License from project: Apache License public class Main { private static int min(int a, int b) { return (a > b) ? b : a; }/*from w ww.ja va2 s . c o m*/ }