Skip to content

Commit 9899787

Browse files
udlosedevlead
authored andcommitted
- fix formatting
1 parent ad73cb3 commit 9899787

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/LitJson/JsonMapper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,10 @@ private static object ReadValue (Type inst_type, JsonReader reader)
359359
}
360360

361361
// Maybe it's an enum
362-
#if NETSTANDARD1_5
362+
#if NETSTANDARD1_5
363363
if (value_type.IsEnum())
364364
return Enum.ToObject (value_type, reader.Value);
365-
#else
365+
#else
366366
if (value_type.IsEnum)
367367
return Enum.ToObject (value_type, reader.Value);
368368
#endif
@@ -559,7 +559,7 @@ private static void RegisterBaseExporters ()
559559
// This method is only called from the static initializer,
560560
// so there is no need to explicitly lock any static members here
561561
base_exporters_table[typeof (byte)] =
562-
delegate (object obj, JsonWriter writer) {
562+
delegate (object obj, JsonWriter writer) {
563563
writer.Write (Convert.ToInt32 ((byte) obj));
564564
};
565565

0 commit comments

Comments
 (0)