Skip to content

Commit f51a4bc

Browse files
committed
Fix errors
1 parent d318f63 commit f51a4bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/DeviceJobs/GetAzureStorSimpleJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public override void ExecuteCmdlet()
150150
}
151151
}
152152

153-
private bool ProcessParameters()
153+
private void ProcessParameters()
154154
{
155155
// Default values for first and skip are 0
156156
First = First ?? 0;

src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/DeviceJobs/StopAzureStorSimpleJob.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public override void ExecuteCmdlet()
5757
var deviceJobDetails = StorSimpleClient.GetDeviceJobById(InstanceId);
5858
if (deviceJobDetails == null)
5959
{
60-
throw new ArgumentException(string.Format(Resources.NoDeviceJobFoundWithGivenIdMessage, InstanceId))
60+
throw new ArgumentException(string.Format(Resources.NoDeviceJobFoundWithGivenIdMessage, InstanceId));
6161
}
6262

6363
// Make sure the job is running and cancellable, else fail.

0 commit comments

Comments
 (0)