Skip to content

Commit

Permalink
made DefaultCompilerDaemon serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
pniederw committed Feb 7, 2012
1 parent 204f8bb commit e2af319
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -20,7 +20,9 @@
import org.gradle.api.tasks.WorkResult;
import org.gradle.process.internal.WorkerProcessContext;

public class DefaultCompilerDaemon implements Action<WorkerProcessContext>, CompilerDaemon {
import java.io.Serializable;

public class DefaultCompilerDaemon implements Action<WorkerProcessContext>, CompilerDaemon, Serializable {
public void execute(WorkerProcessContext context) {
context.getServerConnection().addIncoming(CompilerDaemon.class, this);
}
Expand Down

0 comments on commit e2af319

Please sign in to comment.