Skip to content

Commit

Permalink
fixed enum ref on factory
Browse files Browse the repository at this point in the history
  • Loading branch information
zznate committed Sep 29, 2010
1 parent c4a8c93 commit fe009b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public static StressCommand getInstance(int startKey, CommandArgs commandArgs, C
return new InsertCommand(startKey, commandArgs, countDownLatch);
case READ:
return new SliceCommand(startKey, commandArgs, countDownLatch);
case RANGE_SLICE:
case RANGESLICE:
return new RangeSliceCommand(startKey, commandArgs, countDownLatch);
case MULTI_GET:
case MULTIGET:
// TODO
};
return new InsertCommand(startKey, commandArgs, countDownLatch);
Expand Down

0 comments on commit fe009b4

Please sign in to comment.