Skip to content

Commit

Permalink
INTERNAL: make callback field in BaseOperationImpl private
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviarla committed Dec 2, 2024
1 parent 381b25a commit aaf5850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public abstract class BaseOperationImpl extends SpyObject {
private final AtomicBoolean callbacked = new AtomicBoolean(false);
private String cancelCause = null;
private OperationException exception = null;
protected OperationCallback callback = null;
private OperationCallback callback = null;
private volatile MemcachedNode handlingNode = null;

private OperationType opType = OperationType.UNDEFINED;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected OperationImpl() {

protected OperationImpl(OperationCallback cb) {
super();
callback = cb;
setCallback(cb);
}

/**
Expand Down

0 comments on commit aaf5850

Please sign in to comment.