]> gerrit.simantics Code Review - simantics/platform.git/blob - org/simantics/graphviz/continuation/ComputationThread.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / org / simantics / graphviz / continuation / ComputationThread.java
1 package org.simantics.graphviz.continuation;
2
3 public abstract class ComputationThread<T> extends Computation<T> implements Runnable {
4
5     Thread thread = new Thread(this);
6     
7     public void start() {
8         thread.start();
9     }
10     
11 }