Unused parameters are misleading.
Whatever the values passed to such
parameters, the behavior will be the same.
Issue-ID: POLICY-2616
Change-Id: I9a595dca81ce061846fa53adf8086130ffd31a74
Signed-off-by: Taka Cho <takamune.cho@att.com>
|| thisServer == secondaryBackup));
// invoke 'TargetLock' directly
- TargetLock.auditBucket(this, isOwner, isBackup);
+ TargetLock.auditBucket(this, isOwner);
for (ServerPoolApi feature : ServerPoolApi.impl.getList()) {
feature.auditBucket(this, isOwner, isBackup);
}
*
* @param bucket the bucket to audit
* @param owner 'true' if the current host owns the bucket
- * @param backup 'true' if the current host is a backup for the bucket
*/
- static void auditBucket(Bucket bucket, boolean isOwner, boolean isBackup) {
+ static void auditBucket(Bucket bucket, boolean isOwner) {
if (!isOwner) {
// we should not have any 'TargetLock' adjuncts
if (bucket.removeAdjunct(LocalLocks.class) != null) {