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

« back to all changes in this revision

Viewing changes to src/main/java/weka/filters/unsupervised/attribute/Center.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:
50
50
 * 
51
51
 * @author Eibe Frank (eibe@cs.waikato.ac.nz) 
52
52
 * @author FracPete (fracpete at waikato dot ac dot nz) 
53
 
 * @version $Revision: 1.5 $
 
53
 * @version $Revision: 5543 $
54
54
 */
55
55
public class Center 
56
56
  extends PotentialClassIgnorer 
82
82
   */
83
83
  public Capabilities getCapabilities() {
84
84
    Capabilities result = super.getCapabilities();
 
85
    result.disableAll();
85
86
 
86
87
    // attributes
87
88
    result.enableAllAttributes();
322
323
   * @return            the revision
323
324
   */
324
325
  public String getRevision() {
325
 
    return RevisionUtils.extract("$Revision: 1.5 $");
 
326
    return RevisionUtils.extract("$Revision: 5543 $");
326
327
  }
327
328
 
328
329
  /**