Skip to content

Commit

Permalink
fixed typo in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fracpete committed Oct 22, 2024
1 parent 4a4da28 commit dde817c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/**
/*
* AbstractExperimentFileHandler.java
* Copyright (C) 2015 University of Waikato, Hamilton, NZ
* Copyright (C) 2015-2024 University of Waikato, Hamilton, NZ
*/

package meka.experiment.filehandlers;
Expand All @@ -32,7 +32,6 @@
* Ancestor for experiment file handler classes.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
* @version $Revision$
*/
public abstract class AbstractExperimentFileHandler
extends LogObject
Expand Down Expand Up @@ -88,7 +87,7 @@ public String[] getOptions() {
public abstract Experiment read(File file);

/**
* Writes and experiment to disk.
* Writes an experiment to disk.
*
* @param exp the experiment to save
* @param file the file to save to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/**
/*
* CommandLineSetup.java
* Copyright (C) 2015 University of Waikato, Hamilton, NZ
* Copyright (C) 2015-2024 University of Waikato, Hamilton, NZ
*/

package meka.experiment.filehandlers;
Expand All @@ -31,7 +31,6 @@
* Stores the setup of the experiment as a commandline.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
* @version $Revision$
*/
public class CommandLineSetup
extends AbstractExperimentFileHandler {
Expand Down Expand Up @@ -102,7 +101,7 @@ public Experiment read(File file) {
}

/**
* Writes and experiment to disk.
* Writes an experiment to disk.
*
* @param exp the experiment to save
* @param file the file to save to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/**
/*
* ExperimentFileHandler.java
* Copyright (C) 2015 University of Waikato, Hamilton, NZ
* Copyright (C) 2015-2024 University of Waikato, Hamilton, NZ
*/

package meka.experiment.filehandlers;
Expand All @@ -31,7 +31,6 @@
* Interface for classes load/save experiments.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
* @version $Revision$
*/
public interface ExperimentFileHandler
extends OptionHandler, Serializable, LogSupporter {
Expand Down Expand Up @@ -59,7 +58,7 @@ public interface ExperimentFileHandler
public Experiment read(File file);

/**
* Writes and experiment to disk.
* Writes an experiment to disk.
*
* @param exp the experiment to save
* @param file the file to save to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

/**
/*
* SerializedExperiment.java
* Copyright (C) 2015 University of Waikato, Hamilton, NZ
* Copyright (C) 2015-2024 University of Waikato, Hamilton, NZ
*/

package meka.experiment.filehandlers;
Expand All @@ -29,7 +29,6 @@
* Stores the experiment as a Java serialized object.
*
* @author FracPete (fracpete at waikato dot ac dot nz)
* @version $Revision$
*/
public class SerializedExperiment
extends AbstractExperimentFileHandler {
Expand Down Expand Up @@ -83,7 +82,7 @@ public Experiment read(File file) {
}

/**
* Writes and experiment to disk.
* Writes an experiment to disk.
*
* @param exp the experiment to save
* @param file the file to save to
Expand Down

0 comments on commit dde817c

Please sign in to comment.