-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DevServerHelper should not depend on internal ctor parameter (#37265)
Summary: Pull Request resolved: #37265 DevServerHelper was having a constructor parameter as `DevInternalSettings` which is effectively internal. This should not be the case as that class is Internal as was bleeding out of the public API. I've updated the primary constructor to take instead: ``` public DevServerHelper( DeveloperSettings settings, String packageName, InspectorPackagerConnection.BundleStatusProvider bundleStatusProvider, PackagerConnectionSettings packagerConnectionSettings) { ``` This is breaking change for users that were depending on the Internal class. Changelog: [Android] [Removed] - DevServerHelper should not depend on internal ctor parameter Reviewed By: mdvacca Differential Revision: D45600283 fbshipit-source-id: e73139dbdf5f2505201b2d2c8b5a9143b7e207ba
- Loading branch information
1 parent
8aa2281
commit da358d0
Showing
3 changed files
with
27 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters