Dropped load method taking string file path as argument.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141296 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2004-06-14 23:54:17 +00:00
parent e668ff96b0
commit b7ed15c61a
1 changed files with 1 additions and 19 deletions

View File

@ -53,7 +53,7 @@ import org.apache.commons.math.stat.univariate.SummaryStatistics;
* entry per line.</li>
* </ul></p>
*
* @version $Revision: 1.23 $ $Date: 2004/06/14 23:45:33 $
* @version $Revision: 1.24 $ $Date: 2004/06/14 23:54:17 $
*/
public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistribution {
@ -109,24 +109,6 @@ public class EmpiricalDistributionImpl implements Serializable, EmpiricalDistrib
}
public void load(String filePath) throws IOException {
BufferedReader in =
new BufferedReader(new InputStreamReader(new FileInputStream(filePath)));
try {
DataAdapter da = new StreamDataAdapter(in);
try {
da.computeStats();
} catch (Exception e) {
throw new IOException(e.getMessage());
}
in = new BufferedReader(new InputStreamReader(new FileInputStream(filePath)));
fillBinStats(in);
loaded = true;
} finally {
if (in != null) try {in.close();} catch (Exception ex) {};
}
}
public void load(URL url) throws IOException {
BufferedReader in =
new BufferedReader(new InputStreamReader(url.openStream()));