Fix multiple statements on single line

SA1107
This commit is contained in:
Philip Wood
2018-03-03 13:29:05 +00:00
parent 167fbb3daf
commit f24c0a0510
4 changed files with 7 additions and 6 deletions

View File

@ -19,7 +19,7 @@ namespace Ocelot.Raft
//todo - handle an error
//hack it to just cast as at the moment we know this is the only command :P
var hack = (UpdateFileConfiguration)log.CommandData;
_setter.Set(hack.Configuration).GetAwaiter().GetResult();;
_setter.Set(hack.Configuration).GetAwaiter().GetResult();
}
}
}
}

View File

@ -51,7 +51,7 @@ namespace Ocelot.Requester
if (!c.Contains(k))
{
c.Add(k, v);
};
}
});
span.Log(LogField.CreateNew().ClientSend());