diff --git a/arangod/RocksDBEngine/RocksDBGeoIndexImpl.cpp b/arangod/RocksDBEngine/RocksDBGeoIndexImpl.cpp index 0f269300d9..6ec019e38d 100644 --- a/arangod/RocksDBEngine/RocksDBGeoIndexImpl.cpp +++ b/arangod/RocksDBEngine/RocksDBGeoIndexImpl.cpp @@ -398,9 +398,6 @@ void SlotWrite(GeoIx * gix,int slot, GeoCoordinate * gc) char data[sizeof (GeoCoordinate)]; toPersistent(*gc, &data[0]); RocksWrite(gix, key, rocksdb::Slice(&data[0], sizeof(GeoCoordinate))); - - GeoCoordinate test; - fromPersistent(&data[0],test); } void PotRead(GeoIx * gix, int pot, GeoPot * gp)