File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
249
249
var arrived = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties [" Arrived" ]);
250
250
var addedToInventory = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties [" Added_x0020_to_x0020_Inventory" ]);
251
251
252
- if (arrived & amp ; & amp ; ! addedToInventory )
252
+ if (arrived && ! addedToInventory )
253
253
{
254
254
255
255
// TODO15: Add the item to inventory
@@ -296,7 +296,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
296
296
var arrived = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties [" Arrived" ]);
297
297
var addedToInventory = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties [" Added_x0020_to_x0020_Inventory" ]);
298
298
299
- if (arrived & amp ; & amp ; ! addedToInventory )
299
+ if (arrived && ! addedToInventory )
300
300
{
301
301
using (SqlConnection conn = SQLAzureUtilities .GetActiveSqlConnection ())
302
302
using (SqlCommand cmd = conn .CreateCommand ())
@@ -356,7 +356,7 @@ The Office Developer Tools for Visual Studio includes a **Remote Event Receiver*
356
356
var arrived = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties ["Arrived"]);
357
357
var addedToInventory = Convert .ToBoolean (properties .ItemEventProperties .AfterProperties ["Added_x0020_to_x0020_Inventory"]);
358
358
359
- if (arrived & amp ; & amp ; ! addedToInventory )
359
+ if (arrived && ! addedToInventory )
360
360
{
361
361
using (SqlConnection conn = SQLAzureUtilities .GetActiveSqlConnection ())
362
362
using (SqlCommand cmd = conn .CreateCommand ())
You can’t perform that action at this time.
0 commit comments