Object fileStoreA = getFileStoreMethod.invoke(null, pathA);
Object fileStoreB = getFileStoreMethod.invoke(null, pathB);
return fileStoreA.equals(fileStoreB);
} catch (Exception e) {
throw new RolloverFailure("Failed to check file store equality for [" + a + "] and [" + b + "]", e);
}
}