Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 380140 | Differences between
and this patch

Collapse All | Expand All

(-)a/bundles/org.eclipse.rap.gef/src/org/eclipse/gef/editparts/AbstractConnectionEditPart.java (-2 / +2 lines)
Lines 37-45 Link Here
37
public abstract class AbstractConnectionEditPart extends
37
public abstract class AbstractConnectionEditPart extends
38
		AbstractGraphicalEditPart implements ConnectionEditPart, LayerConstants {
38
		AbstractGraphicalEditPart implements ConnectionEditPart, LayerConstants {
39
39
40
	private static final ConnectionAnchor DEFAULT_SOURCE_ANCHOR = new XYAnchor(
40
	private final ConnectionAnchor DEFAULT_SOURCE_ANCHOR = new XYAnchor(
41
			new Point(10, 10));
41
			new Point(10, 10));
42
	private static final ConnectionAnchor DEFAULT_TARGET_ANCHOR = new XYAnchor(
42
	private final ConnectionAnchor DEFAULT_TARGET_ANCHOR = new XYAnchor(
43
			new Point(100, 100));
43
			new Point(100, 100));
44
44
45
	/**
45
	/**

Return to bug 380140