Removed trailing whitespace.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1503713 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2013-07-16 13:38:02 +00:00
parent fd871b977a
commit ce96ee600f
1 changed files with 2 additions and 2 deletions

View File

@ -506,13 +506,13 @@ public class Frequency implements Serializable {
/**
* Returns the mode value(s) in comparator order.
*
*
* @return a list containing the value(s) which appear most often.
* @since 3.3
*/
public List<Comparable<?>> getMode() {
long mostPopular = 0; // frequencies are always positive
// Get the max count first, so we avoid having to recreate the List each time
for(Long l : freqTable.values()) {
long frequency = l.longValue();