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
71
71
72
72
Release Notes
73
73
-------------
74
+ ### Upcoming
75
+ - Changes
76
+ - Remote Config: Remove deprecated ` ConfigSettings.MinimumFetchInternalInMilliseconds ` ,
77
+ use ` ConfigSettings.MinimumFetchIntervalInMilliseconds ` instead.
78
+
74
79
### 11.9.0
75
80
- Changes
76
81
- 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 {
32
32
/// fetch. Default is 12 hours.
33
33
public ulong MinimumFetchIntervalInMilliseconds { get ; set ; }
34
34
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
-
44
35
internal static ConfigSettings FromInternal ( ConfigSettingsInternal csInternal ) {
45
36
return new ConfigSettings {
46
37
FetchTimeoutInMilliseconds = csInternal . fetch_timeout_in_milliseconds ,
You can’t perform that action at this time.
0 commit comments