2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Database.Database;
|
|
|
|
|
import Common.Global;
|
|
|
|
|
import GlobalData.Compiler.Compiler;
|
2023-11-19 02:12:44 +03:00
|
|
|
import Visual_DVM_2021.Passes.DeleteObjectPass;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class DeleteCompiler extends DeleteObjectPass<Compiler> {
|
|
|
|
|
public DeleteCompiler() {
|
|
|
|
|
super(Compiler.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected Database getDb() {
|
|
|
|
|
return Global.db;
|
|
|
|
|
}
|
|
|
|
|
}
|