Skip to:
This logic: String newVersion = _idxMgr.getCurrentDiskVersion(); if (currentVersion==null || !currentVersion.equals(newVersion)){ fireNewVersionEvent(newVersion); }
is incorrect as newVersion will always be the same as currentVersion.
This logic:
String newVersion = _idxMgr.getCurrentDiskVersion();
if (currentVersion==null || !currentVersion.equals(newVersion)){
fireNewVersionEvent(newVersion);
}
is incorrect as newVersion will always be the same as currentVersion.