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:
parent
fd871b977a
commit
ce96ee600f
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue