File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,11 @@ Support
7171
7272Release Notes
7373-------------
74+ ### Upcoming
75+ - Changes
76+ - Remote Config: Remove deprecated ` ConfigSettings.MinimumFetchInternalInMilliseconds ` ,
77+ use ` ConfigSettings.MinimumFetchIntervalInMilliseconds ` instead.
78+
7479### 11.9.0
7580- Changes
7681 - General: Update to Firebase C++ SDK version 11.10.0.
Original file line number Diff line number Diff line change @@ -32,15 +32,6 @@ public struct ConfigSettings {
3232 /// fetch. Default is 12 hours.
3333 public ulong MinimumFetchIntervalInMilliseconds { get ; set ; }
3434
35- /// The minimum interval between successive fetch calls.
36- ///
37- /// @deprecated Use MinimumFetchIntervalInMilliseconds instead. This will be
38- /// removed in the next major release.
39- public ulong MinimumFetchInternalInMilliseconds {
40- get { return MinimumFetchIntervalInMilliseconds ; }
41- set { MinimumFetchIntervalInMilliseconds = value ; }
42- }
43-
4435 internal static ConfigSettings FromInternal ( ConfigSettingsInternal csInternal ) {
4536 return new ConfigSettings {
4637 FetchTimeoutInMilliseconds = csInternal . fetch_timeout_in_milliseconds ,
You can’t perform that action at this time.
0 commit comments