Files
VisualSapfor/src/_VisualDVM/Passes/All/DeleteProfile.java
2024-10-16 19:52:16 +03:00

9 lines
272 B
Java

package _VisualDVM.Passes.All;
import Common.Passes.DeleteObjectsPass;
import _VisualDVM.GlobalData.SapforProfile.SapforProfile;
public class DeleteProfile extends DeleteObjectsPass<SapforProfile> {
public DeleteProfile() {
super(SapforProfile.class);
}
}