Skip to content

Commit

Permalink
somehow these lines got merged from upstream erroneously
Browse files Browse the repository at this point in the history
  • Loading branch information
mtotschnig committed Nov 1, 2014
1 parent 97b92f7 commit a04ae31
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1105,24 +1105,4 @@ public void setBlockLayoutChildren(boolean blockLayoutChildren) {
mList.setBlockLayoutChildren(blockLayoutChildren);
}

@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void setMultiChoiceModeListener(MultiChoiceModeListener listener) {
requireSdkVersion(Build.VERSION_CODES.HONEYCOMB);
mList.setMultiChoiceModeListener(listener);
}

@Override
public Parcelable onSaveInstanceState() {
Parcelable superState = super.onSaveInstanceState();
if (superState != BaseSavedState.EMPTY_STATE) {
throw new IllegalStateException("Handling non empty state of parent class is not implemented");
}
return mList.onSaveInstanceState();
}

@Override
protected void onRestoreInstanceState(Parcelable state) {
super.onRestoreInstanceState(BaseSavedState.EMPTY_STATE);
mList.onRestoreInstanceState(state);
}
}

0 comments on commit a04ae31

Please sign in to comment.