Skip to content

Commit aa8b056

Browse files
authored
Remove deprecated RC ConfigSettings field (#1001)
1 parent c621a68 commit aa8b056

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

docs/readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ Support
7171

7272
Release 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.

remote_config/src/ConfigSettings.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)