Here you can find the source of minInt(int a, int b)
public static int minInt(int a, int b)
//package com.java2s; //License from project: LGPL public class Main { /**// www . ja va 2 s . c o m * finds smaller of 2 valid int's * based on COFH's minI method */ public static int minInt(int a, int b) { return a < b ? a : b; } }