From d3ae26584775a3cb72d1ff15f32eefed805a80a6 Mon Sep 17 00:00:00 2001 From: Isamu Mogi Date: Sat, 8 Jun 2024 18:15:29 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B3=E3=83=A9=E3=82=A4=E3=83=80=E3=83=BC?= =?UTF-8?q?=E3=82=A8=E3=82=AF=E3=82=B9=E3=83=9D=E3=83=BC=E3=83=88=E6=99=82?= =?UTF-8?q?=E3=81=AE=20"Unreachable=20code=20detected"=20=E8=AD=A6?= =?UTF-8?q?=E5=91=8A=E3=81=AB=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 次の警告が発生していました。 ``` UniVRM/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs(384,21): warning CS0162: Unreachable code detected ``` 冗長なbreakが存在していたため、削除しました。 --- Assets/VRM10/Runtime/IO/Vrm10Exporter.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs b/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs index 7a26cd8d5..365baa2e4 100644 --- a/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs +++ b/Assets/VRM10/Runtime/IO/Vrm10Exporter.cs @@ -381,7 +381,6 @@ namespace UniVRM10 }; break; } - break; } return shape; }