Reformatting adding extra blank line
Anybody knows why an extra newline is added after the return. The following snippet:
public static WorkOrderLineDataObject Create(int workOrderId)
{
return Create( workOrderId,
0,
ProductDataAccessor.ComputerId,
WorkOrderLineTypeDataAccessor.AttachmentId,
WorkOrderLinePaymentStatusDataAccessor.UnpaidId,
WorkOrderLineStatusDataAccessor.InProgressId );
}
gets reformatted to this:
public static WorkOrderLineDataObject Create(int workOrderId)
{
return
Create( workOrderId,
0,
ProductDataAccessor.ComputerId,
WorkOrderLineTypeDataAccessor.AttachmentId,
WorkOrderLinePaymentStatusDataAccessor.UnpaidId,
WorkOrderLineStatusDataAccessor.InProgressId );
}
Please sign in to leave a comment.