1# 软总线子系统ChangeLog 2 3## cl.softbus.1 IPC接口中unregisterDeathRecipient接口返回值变更,更改为void。 4 5unregisterDeathRecipient(recipient: DeathRecipient, flags: number)方法返回值为boolean,更正为void。 6 7**变更影响** 8 9该unregisterDeathRecipient接口如果需要继续使用,建议优先使用removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean方法。 10 11**关键的接口/组件变更** 12 13- 变更前: 14 15```js 16 unregisterDeathRecipient(recipient: DeathRecipient, flags: number): boolean 17``` 18 19- 变更后: 20 21```js 22 unregisterDeathRecipient(recipient: DeathRecipient, flags: number): void 23``` 24 25**适配指导** 26 27该unregisterDeathRecipient接口如果需要继续使用,建议优先使用removeDeathRecipient(recipient: DeathRecipient, flags: number): boolean方法。