From dec76bb5202e3aea37bdddeaa8fe528d9f635015 Mon Sep 17 00:00:00 2001 From: yutopp Date: Tue, 29 Jan 2019 14:51:19 +0900 Subject: [PATCH] Comment out unused variables and add notes --- Assets/VRM.Samples/Editor/Tests/VRMImportExportTests.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Assets/VRM.Samples/Editor/Tests/VRMImportExportTests.cs b/Assets/VRM.Samples/Editor/Tests/VRMImportExportTests.cs index 3222dc800..3a42d7a60 100644 --- a/Assets/VRM.Samples/Editor/Tests/VRMImportExportTests.cs +++ b/Assets/VRM.Samples/Editor/Tests/VRMImportExportTests.cs @@ -83,9 +83,11 @@ namespace VRM.Samples var vrm = VRMExporter.Export(context.Root); - var exportJson = JsonParser.Parse(vrm.ToJson()); + // TODO: Check contents in JSON + /*var exportJson = */JsonParser.Parse(vrm.ToJson()); - var newExportedJson = JsonParser.Parse(JsonSchema.FromType().Serialize(vrm)); + // TODO: Check contents in JSON + /*var newExportedJson = */JsonParser.Parse(JsonSchema.FromType().Serialize(vrm)); /* foreach (var kv in importJson.Diff(exportJson))