app: remove double return
This commit is contained in:
parent
3c2cb65088
commit
ad0d43da87
1 changed files with 1 additions and 3 deletions
|
|
@ -904,9 +904,7 @@ gimp_vectors_real_stroke_get_length (const GimpVectors *vectors,
|
|||
g_return_val_if_fail (GIMP_IS_VECTORS (vectors), 0.0);
|
||||
g_return_val_if_fail (GIMP_IS_STROKE (stroke), 0.0);
|
||||
|
||||
return (gimp_stroke_get_length (stroke, vectors->precision));
|
||||
|
||||
return 0.0;
|
||||
return gimp_stroke_get_length (stroke, vectors->precision);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue