Skip to content

Commit 528eaa9

Browse files
author
Nathaniel McHugh
committed
remove unnecessary breaks
1 parent b7f4292 commit 528eaa9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

geospatial.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,9 @@ geo_ellipsoid get_ellipsoid(long ellipsoid_const)
227227
switch (ellipsoid_const) {
228228
case GEO_AIRY_1830:
229229
return airy_1830;
230-
break;
231230
case GEO_WGS84:
232231
default:
233232
return wgs84;
234-
break;
235233
}
236234
}
237235

@@ -240,11 +238,9 @@ geo_helmert_constants get_helmert_constants(long from, long to)
240238
switch (from - to) {
241239
case 1:
242240
return osgb36_wgs84;
243-
break;
244241
default:
245242
case -1:
246243
return wgs84_osgb36;
247-
break;
248244
}
249245
}
250246

0 commit comments

Comments
 (0)