Here you can find the source of minInteger(int var1, int var2)
public static int minInteger(int var1, int var2)
//package com.java2s; //License from project: Apache License public class Main { public static int minInteger(int var1, int var2) { return var1 < var2 ? var1 : var2; }//from w w w .j av a 2 s . co m }