Merge change 4023 into donut

* changes:
  Fix IntentFilter constructor to properly process the action parameter.
This commit is contained in:
Android (Google) Code Review
2009-06-15 20:21:30 -07:00

View File

@@ -366,6 +366,7 @@ public class IntentFilter implements Parcelable {
throws MalformedMimeTypeException {
mPriority = 0;
mActions = new ArrayList<String>();
addAction(action);
addDataType(dataType);
}