Skip to content

Commit 98e6aed

Browse files
authored
Merge pull request #283 from Unity-Technologies/Uni-35981-remove-unused-variable
Uni-35981 removed unused variable
2 parents a69c98f + d34ee67 commit 98e6aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Assets/FbxExporters/Editor/UnitTests/FbxCameraTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public void AnimationWithCameraFOVTest()
2323
string filename = GetRandomFbxFilePath();
2424
GameObject go = new GameObject();
2525
go.name = "originalCamera";
26-
Camera camera = go.AddComponent(typeof(Camera)) as Camera;
26+
go.AddComponent(typeof(Camera));
2727
Animation anim = go.AddComponent(typeof(Animation)) as Animation;
2828

2929
Keyframe[] keys = new Keyframe[3];

0 commit comments

Comments
 (0)