Similar to Andrew Johnson's question, in one of my plugins I'm creating a new query.
I need access to these classes, do you think it makes sense to promote them to API also?
CollectionUtil in paticular is required to do anything
import org.eclipse.mat.inspections.collections.CollectionUtil;
import org.eclipse.mat.inspections.InspectionAssert;
you're right, moving CollectionUtil also makes sense. I'll see to that.
Currently, I don't like the fact that one class knows the implementation
differences between Sun/IBM VMs etc etc. I'd rather have the format
adapter (e.g. DTJF for J9 VMs have that knowledge). It was a pragmatic
solution to get the collection stuff working.