HBASE-6117 Revisit default condition added to Switch cases in Trunk

Submitted by:Ram	
Reviewed by:Stack	


git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1357356 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ramkrishna 2012-07-04 18:08:51 +00:00
parent 6daa0f7bc7
commit c88f04f153
1 changed files with 4 additions and 0 deletions

View File

@ -3150,6 +3150,10 @@ public class AssignmentManager extends ZooKeeperListener {
invokeUnassign(regionInfo); invokeUnassign(regionInfo);
break; break;
case SPLIT:
case SPLITTING:
break;
default: default:
throw new IllegalStateException("Received event is not valid."); throw new IllegalStateException("Received event is not valid.");
} }