Skip to content

Commit

Permalink
[DB-10780] Removed dead code (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alberto Massari committed Sep 15, 2015
1 parent 0a75e2f commit acb82a7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions NuoDb.Data.Client/EncodedDataStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,13 +403,8 @@ private static void ConvertToScaledDecimal(Decimal bd, out int scale, out Decima

internal virtual int byteCount(int n)
{
if (n > 0)
if (n >= 0)
{
if (n == 0)
{
return 0;
}

if (n < (1 << 7))
{
return 1;
Expand Down

0 comments on commit acb82a7

Please sign in to comment.