1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

[306865] - BreakpointOrganizerVMContext constructor should have public constructor

This commit is contained in:
Pawel Piech 2010-03-24 05:31:56 +00:00
parent 26918193cf
commit 4abe599850

View file

@ -26,7 +26,7 @@ public class BreakpointOrganizerVMContext extends AbstractVMContext implements I
private final IAdaptable fCategory;
private final IBreakpoint[] fBreakpoints;
BreakpointOrganizerVMContext(BreakpointOrganizerVMNode vmNode, IAdaptable category, IBreakpoint[] breakpoints) {
public BreakpointOrganizerVMContext(BreakpointOrganizerVMNode vmNode, IAdaptable category, IBreakpoint[] breakpoints) {
super(vmNode);
fCategory = category;
fBreakpoints = breakpoints;