Skip to content

Commit

Permalink
- Made changes to fix a few warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico-Artioli committed Apr 11, 2024
1 parent be6f762 commit 2e68f71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions MetasysServices/Activities/ActivityFilter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace JohnsonControls.Metasys.BasicServices
{
Expand Down Expand Up @@ -30,7 +28,7 @@ public class ActivityFilter

/// <summary> The criteria to use when sorting results. </summary>
/// <remarks> Possible values: 'creationTime', '-creationTime', 'priority', '-priority'. Default: 'creationTime'</remarks>
public new string Sort { get; set; }
public string Sort { get; set; }

/// <summary> Filter by list of equipment identifiers. </summary>
public string[] Equipment { get; set; }
Expand Down
6 changes: 2 additions & 4 deletions MetasysServices/Interfaces/IMetasysClient.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using JohnsonControls.Metasys.BasicServices;
using System;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
Expand Down Expand Up @@ -314,7 +312,7 @@ public interface IMetasysClient : IBasicService
/// <exception cref="MetasysHttpException"></exception>
/// <exception cref="MetasysHttpParsingException"></exception>
IEnumerable<MetasysObject> GetObjects(Guid id, int levels = 1, bool includeInternalObjects = false, bool includeExtensions = false);
/// <inheritdoc cref="IMetasysClient.GetObjects(Guid, int, bool)"/>
/// <inheritdoc cref="IMetasysClient.GetObjects(Guid, int, bool, bool)"/>
Task<IEnumerable<MetasysObject>> GetObjectsAsync(Guid id, int levels = 1, bool includeInternalObjects = false, bool includeExtensions = false);

/// <summary>
Expand Down

0 comments on commit 2e68f71

Please sign in to comment.