refactor: rename namespace SimpleJSON to Luban.SimpleJson to avoid conflict with SimpleJSON in TextMateSharp of com.unity.collab-proxy.

This commit is contained in:
walon 2026-03-27 12:38:28 +08:00
parent d870def77c
commit a2be21654d
4 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ using System.Globalization;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
namespace SimpleJSON namespace Luban.SimpleJSON
{ {
public enum JSONNodeType public enum JSONNodeType
{ {

View File

@ -61,7 +61,7 @@
* * * * */ * * * * */
using System; using System;
namespace SimpleJSON namespace Luban.SimpleJSON
{ {
#if !SimpleJSON_ExcludeBinary #if !SimpleJSON_ExcludeBinary
public abstract partial class JSONNode public abstract partial class JSONNode

View File

@ -1,4 +1,4 @@
// Copyright 2025 Code Philosophy // Copyright 2025 Code Philosophy
// //
// Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal // of this software and associated documentation files (the "Software"), to deal
@ -58,7 +58,7 @@
#endregion License and information #endregion License and information
namespace SimpleJSON namespace Luban.SimpleJSON
{ {
using System.Globalization; using System.Globalization;
using System.Collections.Generic; using System.Collections.Generic;

View File

@ -61,7 +61,7 @@
#endregion License and information #endregion License and information
using UnityEngine; using UnityEngine;
namespace SimpleJSON namespace Luban.SimpleJSON
{ {
public enum JSONContainerType { Array, Object } public enum JSONContainerType { Array, Object }
public partial class JSONNode public partial class JSONNode