Skip to content

Commit

Permalink
Code format
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcgi committed Jan 25, 2018
1 parent 58933c8 commit fe87186
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions MojoUnityJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -468,40 +468,54 @@ private static int UnicodeCharToInt(char c)
{
case '0':
return 0;

case '1':
return 1;

case '2':
return 2;

case '3':
return 3;

case '4':
return 4;

case '5':
return 5;

case '6':
return 6;

case '7':
return 7;

case '8':
return 8;

case '9':
return 9;

case 'A':
case 'a':
return 10;

case 'B':
case 'b':
return 11;

case 'C':
case 'c':
return 12;

case 'D':
case 'd':
return 13;

case 'E':
case 'e':
return 14;

case 'F':
case 'f':
return 15;
Expand Down

0 comments on commit fe87186

Please sign in to comment.