Skip to content

Commit e0b11c2

Browse files
committed
Removed property tracker implementation from custom modules
1 parent e7e4e5f commit e0b11c2

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/Teams/beta/custom/MicrosoftGraphRscConfiguration.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ public partial class MicrosoftGraphRscConfiguration :
1515
IMicrosoftGraphRscConfigurationInternal,
1616
Runtime.IValidates
1717
{
18-
private readonly PropertyTracker _propertyTracker = new PropertyTracker();
19-
public void TrackProperty(string propertyName) => _propertyTracker.TrackProperty(propertyName);
20-
public bool IsPropertySet(string propertyName) =>_propertyTracker.IsPropertySet(propertyName);
21-
public T SanitizeValue<T>(object value) => PropertyTracker.SanitizeValue<T>(value);
2218
/// <summary>
2319
/// Backing field for Inherited model <see cref= "Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphEntity" />
2420
/// </summary>

src/Teams/beta/custom/MicrosoftGraphTeamsAppPreApproval.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ public partial class MicrosoftGraphTeamsAppPreApproval :
1515
IMicrosoftGraphTeamsAppPreApprovalInternal,
1616
Runtime.IValidates
1717
{
18-
private readonly PropertyTracker _propertyTracker = new PropertyTracker();
19-
public void TrackProperty(string propertyName) => _propertyTracker.TrackProperty(propertyName);
20-
public bool IsPropertySet(string propertyName) =>_propertyTracker.IsPropertySet(propertyName);
21-
public T SanitizeValue<T>(object value) => PropertyTracker.SanitizeValue<T>(value);
2218

2319
/// <summary>
2420
/// Backing field for Inherited model <see cref= "Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphEntity" />

0 commit comments

Comments
 (0)