Clean up method stub added for cleaning after test compilations

This commit is contained in:
Brendan Robert 2015-08-08 15:08:46 -05:00
parent df6101ddc5
commit 175484b4b3
1 changed files with 2 additions and 2 deletions

View File

@ -3,10 +3,10 @@ package jace.ide;
public interface LanguageHandler<T> {
public String getNewDocumentContent();
public CompileResult<T> compile(Program program);
public void execute(CompileResult<T> lastResult);
public void clean(CompileResult<T> lastResult);
}