Skip to content

Commit

Permalink
ISPN-2987 Fix for ISPN-2808: BaseRpcCommand should provide an impleme…
Browse files Browse the repository at this point in the history
…ntation of the new method
  • Loading branch information
pruivo authored and Mircea Markus committed Apr 5, 2013
1 parent 41c0bef commit 45b3374
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 19 deletions.
4 changes: 0 additions & 4 deletions core/src/main/java/org/infinispan/commands/CancelCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,4 @@ public String toString() {
return "CancelCommand [uuid=" + commandToCancel + "]";
}

@Override
public boolean canBlock() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,9 @@ public Address getOrigin() {
public void setOrigin(Address origin) {
this.origin = origin;
}

@Override
public boolean canBlock() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -231,11 +231,6 @@ public boolean isReturnValueExpected() {
return true;
}

@Override
public boolean canBlock() {
return false;
}

@Override
public int getTopologyId() {
return topologyId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,4 @@ public void init(RecoveryManager rm) {
public boolean isReturnValueExpected() {
return true;
}

@Override
public boolean canBlock() {
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,6 @@ public final boolean isReturnValueExpected() {
return true;
}

@Override
public boolean canBlock() {
return false;
}

@Override
public String toString() {
return "XSiteAdminCommand{" +
Expand Down

0 comments on commit 45b3374

Please sign in to comment.