* Update the indexes of a StoreEntry
*
* @param current
*/
public synchronized StoreEntry refreshEntry(StoreEntry current) {
StoreEntry result = null;
if (current != null && current.getOffset() >= 0) {
try {
result = indexManager.refreshIndex((IndexItem)current);
} catch (IOException e) {
throw new RuntimeException("Failed to index", e);