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