Skip to content

Commit

Permalink
wip 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jj22ee committed May 6, 2024
1 parent 7c1b9c4 commit 89d4ea5
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 29 deletions.
18 changes: 0 additions & 18 deletions sdk/src/Core/ThirdParty/LitJson/AssemblyInfo.cs.in

This file was deleted.

2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/IJsonWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Collections.Specialized;


namespace LitJson
namespace ThirdParty.LitJson
{
public enum JsonType
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/Core/ThirdParty/LitJson/JsonData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System.IO;


namespace LitJson
namespace ThirdParty.LitJson
{
public class JsonData : IJsonWrapper, IEquatable<JsonData>
{
Expand Down Expand Up @@ -73,7 +73,7 @@ public bool IsString {
public ICollection<string> Keys {
get { EnsureDictionary (); return inst_object.Keys; }
}

/// <summary>
/// Determines whether the json contains an element that has the specified key.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/JsonException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using System;


namespace LitJson
namespace ThirdParty.LitJson
{
public class JsonException :
#if NETSTANDARD1_5
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/Core/ThirdParty/LitJson/JsonMapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
using System.Globalization;
using System.IO;
using System.Reflection;
using Amazon.XRay.Recorder.Core.Internal.Utils;


namespace LitJson
namespace ThirdParty.LitJson
{
internal struct PropertyMetadata
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/JsonMockWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Collections.Specialized;


namespace LitJson
namespace ThirdParty.LitJson
{
public class JsonMockWrapper : IJsonWrapper
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/JsonReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using System.Text;


namespace LitJson
namespace ThirdParty.LitJson
{
public enum JsonToken
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/JsonWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
using System.Text;


namespace LitJson
namespace ThirdParty.LitJson
{
internal enum Condition
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/Lexer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
using System.Text;


namespace LitJson
namespace ThirdParty.LitJson
{
internal class FsmContext
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/Core/ThirdParty/LitJson/ParserToken.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#endregion


namespace LitJson
namespace ThirdParty.LitJson
{
internal enum ParserToken
{
Expand Down

0 comments on commit 89d4ea5

Please sign in to comment.