| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Alexander Zverev |
| Subsystem | Quick Fixes |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build |
Next build |
| Build |
265
|
| Fixed in build |
900
|
RSRP-30220 |
Quick fix "Remove redundant initializer" |
|
|
using (Scope scope = new Scope())
{
DbContext.ExecuteNonQuery(dbOperation.SqlCommand);
return null;
}
using (Scope scope)
{
DbContext.ExecuteNonQuery(dbOperation.SqlCommand);
return null;
}
using (new Scope())
{
DbContext.ExecuteNonQuery(dbOperation.SqlCommand);
return null;
}