~ubuntu-branches/ubuntu/utopic/weka/utopic-proposed

« back to all changes in this revision

Viewing changes to src/main/java/weka/gui/beans/Filter.java

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2014-05-03 15:49:06 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20140503154906-s15hy2fdjy9geixq
Tags: 3.6.11-1
* New upstream release.
* Update wrapper script to work with any java6-runtime.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 * A wrapper bean for Weka filters
46
46
 *
47
47
 * @author <a href="mailto:mhall@cs.waikato.ac.nz">Mark Hall</a>
48
 
 * @version $Revision: 7059 $
 
48
 * @version $Revision: 9967 $
49
49
 */
50
50
public class Filter
51
51
  extends JPanel
69
69
  private static int FILTERING_TEST = 2;
70
70
  private int m_state = IDLE;
71
71
 
72
 
  protected Thread m_filterThread = null;
 
72
  protected transient Thread m_filterThread = null;
73
73
 
74
74
  private transient Instances m_trainingSet;
75
75
  private transient Instances m_testingSet;
547
547
                    }
548
548
                  }
549
549
                  block(false);
 
550
                  m_filterThread = null;
550
551
                }
551
552
              }
552
553
            };
629
630
                  }
630
631
                }
631
632
                block(false);
 
633
                m_filterThread = null;
632
634
              }
633
635
            }
634
636
          };