Skip to content

Commit afc7a37

Browse files
committed
Remove IEnumerable from output type
1 parent e15d680 commit afc7a37

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAcl.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// limitations under the License.
1313
// ----------------------------------------------------------------------------------
1414

15-
using System.Collections.Generic;
1615
using Microsoft.Azure.Commands.DataLakeStore.Models;
1716
using Microsoft.Azure.Commands.DataLakeStore.Properties;
1817
using System.Management.Automation;
@@ -22,7 +21,7 @@
2221
namespace Microsoft.Azure.Commands.DataLakeStore
2322
{
2423
[Cmdlet(VerbsCommon.Set, "AzureRmDataLakeStoreItemAcl", SupportsShouldProcess = true),
25-
OutputType(typeof(IEnumerable<DataLakeStoreItemAce>))]
24+
OutputType(typeof(DataLakeStoreItemAce))]
2625
[Alias("Set-AdlStoreItemAcl")]
2726
public class SetAzureDataLakeStoreItemAcl : DataLakeStoreFileSystemCmdletBase
2827
{

src/ResourceManager/DataLakeStore/Commands.DataLakeStore/DataPlaneCommands/SetAzureRmDataLakeStoreItemAclEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace Microsoft.Azure.Commands.DataLakeStore
2525
{
2626
[Cmdlet(VerbsCommon.Set, "AzureRmDataLakeStoreItemAclEntry", SupportsShouldProcess = true, DefaultParameterSetName = BaseParameterSetName),
27-
OutputType(typeof(IEnumerable<DataLakeStoreItemAce>))]
27+
OutputType(typeof(DataLakeStoreItemAce))]
2828
[Alias("Set-AdlStoreItemAclEntry")]
2929
public class SetAzureDataLakeStoreItemAclEntry : DataLakeStoreFileSystemCmdletBase
3030
{

0 commit comments

Comments
 (0)