Пример #1
0
 private static void setLocation(final Geocache cache, final String location) {
   final String latitude = StringUtils.substringBefore(location, SEPARATOR_STRING);
   final String longitude = StringUtils.substringAfter(location, SEPARATOR_STRING);
   cache.setCoords(new Geopoint(latitude, longitude));
 }