Skip to content

Commit 8057a86

Browse files
authored
Update LitJson to 0.18.0 (#498)
1 parent c30e9f8 commit 8057a86

File tree

8 files changed

+1872
-1582
lines changed

8 files changed

+1872
-1582
lines changed

src/Cake.Issues.Reporting.Generic/LitJson/IJsonWrapper.cs

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,29 +38,29 @@ internal enum JsonType
3838

3939
internal interface IJsonWrapper : IList, IOrderedDictionary
4040
{
41-
bool IsArray { get; }
41+
bool IsArray { get; }
4242
bool IsBoolean { get; }
43-
bool IsDouble { get; }
44-
bool IsInt { get; }
45-
bool IsLong { get; }
46-
bool IsObject { get; }
47-
bool IsString { get; }
43+
bool IsDouble { get; }
44+
bool IsInt { get; }
45+
bool IsLong { get; }
46+
bool IsObject { get; }
47+
bool IsString { get; }
4848

49-
bool GetBoolean ();
50-
double GetDouble ();
51-
int GetInt ();
52-
JsonType GetJsonType ();
53-
long GetLong ();
54-
string GetString ();
49+
bool GetBoolean();
50+
double GetDouble();
51+
int GetInt();
52+
JsonType GetJsonType();
53+
long GetLong();
54+
string GetString();
5555

56-
void SetBoolean (bool val);
57-
void SetDouble (double val);
58-
void SetInt (int val);
59-
void SetJsonType (JsonType type);
60-
void SetLong (long val);
61-
void SetString (string val);
56+
void SetBoolean(bool val);
57+
void SetDouble(double val);
58+
void SetInt(int val);
59+
void SetJsonType(JsonType type);
60+
void SetLong(long val);
61+
void SetString(string val);
6262

63-
string ToJson ();
64-
void ToJson (JsonWriter writer);
63+
string ToJson();
64+
void ToJson(JsonWriter writer);
6565
}
66-
}
66+
}

0 commit comments

Comments
 (0)