changed getWindowSized to synchronized since setWindowSize was already synchronized

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@567815 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-08-20 20:19:12 +00:00
parent 22b8f2abbd
commit bdcd470267
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ public class ListUnivariateImpl extends DescriptiveStatistics implements Seriali
/**
* @see org.apache.commons.math.stat.descriptive.DescriptiveStatistics#getWindowSize
*/
public int getWindowSize() {
public synchronized int getWindowSize() {
return windowSize;
}