From c72e82e06ece8f62eacaaa0ec47e3248042b5888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=CC=8Akan=20Sidenvall?= Date: Wed, 27 Nov 2024 11:36:40 +0100 Subject: [PATCH 1/2] FIX: Remove duplicate using statement leading to compiler warning. --- Assets/Tests/InputSystem/Plugins/InputForUITests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Assets/Tests/InputSystem/Plugins/InputForUITests.cs b/Assets/Tests/InputSystem/Plugins/InputForUITests.cs index 94662f7515..983703be7e 100644 --- a/Assets/Tests/InputSystem/Plugins/InputForUITests.cs +++ b/Assets/Tests/InputSystem/Plugins/InputForUITests.cs @@ -11,11 +11,9 @@ using UnityEngine.TestTools; using UnityEngine.TestTools.Constraints; #if UNITY_EDITOR -using UnityEditor; using UnityEngine.InputSystem.Editor; #endif using UnityEngine.InputSystem.Plugins.InputForUI; -using UnityEngine.TestTools; using Event = UnityEngine.InputForUI.Event; using EventProvider = UnityEngine.InputForUI.EventProvider; using Is = NUnit.Framework.Is; From 1df6a0408478cb222d8227a9337ef7afa61fa41f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=CC=8Akan=20Sidenvall?= Date: Wed, 27 Nov 2024 11:40:54 +0100 Subject: [PATCH 2/2] Updated CHANGELOG --- Packages/com.unity.inputsystem/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Packages/com.unity.inputsystem/CHANGELOG.md b/Packages/com.unity.inputsystem/CHANGELOG.md index 8cd2fc389f..b0debbc1ef 100644 --- a/Packages/com.unity.inputsystem/CHANGELOG.md +++ b/Packages/com.unity.inputsystem/CHANGELOG.md @@ -26,6 +26,7 @@ however, it has to be formatted properly to pass verification tests. - Fixed icon scaling in Input Actions window. - Fixed an issue where removing the InputSystem package could lead to invalid input handling settings. - Fixed `ArgumentOutOfRangeException` when adding a new Control Scheme with any Device selected. [ISXB-1129](https://issuetracker.unity3d.com/product/unity/issues/guid/ISXB-1129) +- Fixed a CS0105 compiler warning due to duplicate using statement in test source code (ISXB-1247). ### Changed - Added back the InputManager to InputSystem project-wide asset migration code with performance improvement (ISX-2086).