Skip to content

Commit

Permalink
Merge branch 'negative_integer_support' of https://github.com/steinbi…
Browse files Browse the repository at this point in the history
…tglis/YamlDotNet into steinbitglis-negative_integer_support
  • Loading branch information
aaubry committed Feb 1, 2016
2 parents 19a74c5 + 4807266 commit c777efe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private object DeserializeIntegerHelper(TypeCode typeCode, string value, IFormat
else
{
// Could be decimal or base 60
string[] chunks = value.Split(':');
string[] chunks = value.Substring(currentIndex).Split(':');
result = 0;

for (int chunkIndex = 0; chunkIndex < chunks.Length; chunkIndex++)
Expand Down

0 comments on commit c777efe

Please sign in to comment.