Skip to content

Commit

Permalink
Simplify concrete type key
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyCushnie committed Sep 28, 2024
1 parent 5651cee commit 8b4d559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JECS/Parsing Logic/NodeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace JECS.ParsingLogic
/// </summary>
internal static class NodeManager
{
const string KEY_CONCRETE_TYPE = "{JECS_INTERNAL_CONCRETE_TYPE}";
const string KEY_CONCRETE_TYPE = "{JECS_CONCRETE_TYPE}";

internal static void SetNodeData<T>(Node node, T data, FileStyle style) => SetNodeData(node, data, typeof(T), style);
internal static void SetNodeData(Node node, object data, Type type, FileStyle style)
Expand Down

0 comments on commit 8b4d559

Please sign in to comment.