View | Details | Raw Unified | Return to bug 237802 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/draw2d/RelativeBendpoint.java (-2 / +2 lines)
Lines 25-31 Link Here
25
{
25
{
26
26
27
private Connection connection;
27
private Connection connection;
28
private float weight = 0.5f;
28
private double weight = 0.5f;
29
private Dimension d1, d2;
29
private Dimension d1, d2;
30
30
31
/**
31
/**
Lines 102-108 Link Here
102
 * @param w The weight
102
 * @param w The weight
103
 * @since 2.0
103
 * @since 2.0
104
 */
104
 */
105
public void setWeight(float w) {
105
public void setWeight(double w) {
106
	weight = w;
106
	weight = w;
107
}
107
}
108
108

Return to bug 237802