move method to private

This commit is contained in:
Jake Visser 2017-07-06 16:59:37 -07:00
commit 3765710da8

View file

@ -208,7 +208,7 @@ namespace qcbadge.Controllers
return View();
}
bool IsBitSet(long b, int pos)
private bool IsBitSet(long b, int pos)
{
return (b & (1 << pos)) != 0;
}