Fixed argument name mismatch with doc in FloatConsumer.accept()

This commit is contained in:
Emmanuel BENOîT 2015-09-11 15:28:36 +02:00
parent a7baa3ea15
commit 76b0786fbe

View file

@ -25,7 +25,7 @@ public interface FloatConsumer
* @param value
* the input argument
*/
public void accept( float t );
public void accept( float value );
/**