2024-10-14 12:14:01 +03:00
|
|
|
package _VisualDVM.Passes.All;
|
2024-10-16 19:40:55 +03:00
|
|
|
import Common.Passes.DeleteObjectsPass;
|
2024-10-12 00:17:51 +03:00
|
|
|
import _VisualDVM.GlobalData.Compiler.Compiler;
|
2024-10-16 19:40:55 +03:00
|
|
|
public class DeleteCompiler extends DeleteObjectsPass<Compiler> {
|
2023-09-17 22:13:42 +03:00
|
|
|
public DeleteCompiler() {
|
|
|
|
|
super(Compiler.class);
|
|
|
|
|
}
|
|
|
|
|
}
|