code review comments
This commit is contained in:
parent
1280367593
commit
1f66d87b2f
|
@ -139,7 +139,7 @@ public class ReductionStepExecutor {
|
|||
|
||||
ChunkOutcome outcome = theReductionStepWorker.consume(chunkDetails);
|
||||
|
||||
switch (outcome.getStatuss()) {
|
||||
switch (outcome.getStatus()) {
|
||||
case SUCCESS:
|
||||
theResponseObject.addSuccessfulChunkId(theChunk);
|
||||
break;
|
||||
|
|
|
@ -33,7 +33,7 @@ public class ChunkOutcome {
|
|||
myStatus = theStatus;
|
||||
}
|
||||
|
||||
public Status getStatuss() {
|
||||
public Status getStatus() {
|
||||
return myStatus;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue