mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
cc056907cf
Summary:
This diff cleans up two functions from:
```
LogBoxLogData.add({args: ['A']});
LogBoxLogParser({args: ['A']});
```
to:
```
LogBoxLogData.add(['A']);
LogBoxLogParser.parseLog(['A']);
```
Changelog: [Internal]
Reviewed By: cpojer
Differential Revision: D18056462
fbshipit-source-id: be6108069fc24b1f25d1382ad31c314183c793f8