~ubuntu-branches/ubuntu/wily/weka/wily

« back to all changes in this revision

Viewing changes to src/main/java/weka/filters/unsupervised/attribute/NumericCleaner.java

  • Committer: Bazaar Package Importer
  • Author(s): tony mancill
  • Date: 2011-08-05 22:40:50 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110805224050-a01vkwst9epdi4sw
Tags: 3.6.5-1
* Team upload.
* New upstream version (Closes: #632082, #598400)
* Bump Standards-Version to 3.9.2 (no changes required).
* Freshen jar.patch; remove java_cup.patch (incorporated upstream)
* Add README.source to document process of obtaining .png resources.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
 <!-- options-end -->
92
92
 *
93
93
 * @author  fracpete (fracpete at waikato dot ac dot nz)
94
 
 * @version $Revision: 1.2 $
 
94
 * @version $Revision: 5543 $
95
95
 */
96
96
public class NumericCleaner
97
97
  extends SimpleStreamFilter {
390
390
   */
391
391
  public Capabilities getCapabilities() {
392
392
    Capabilities result = super.getCapabilities();
 
393
    result.disableAll();
393
394
 
394
395
    // attributes
395
396
    result.enableAllAttributes();
806
807
   * @return            the revision
807
808
   */
808
809
  public String getRevision() {
809
 
    return RevisionUtils.extract("$Revision: 1.2 $");
 
810
    return RevisionUtils.extract("$Revision: 5543 $");
810
811
  }
811
812
 
812
813
  /**