don't want to update revision while updating field by code in sitecore csharp

Code Example - don't want to update revision while updating field by code in sitecore csharp

                
                        bool silent = true;
bool updateStatistics = false;

using (SecurityDisabler disabler = new SecurityDisabler())
{
    using (new EditContext(item, updateStatistics, silent))
    {
        item["ShortHeadline"] = item["Title"];    
    }
}