Here you can find the source of maxFloat(float var1, float var2)
public static float maxFloat(float var1, float var2)
//package com.java2s; //License from project: Apache License public class Main { public static float maxFloat(float var1, float var2) { return var1 > var2 ? var1 : var2; }/*from w w w . ja v a2s. c om*/ }