Skip to content

Commit 15d0091

Browse files
committed
make backing array private
1 parent 2fed113 commit 15d0091

File tree

1 file changed

+1
-3
lines changed
  • Packages/com.unity.inputsystem/InputSystem/Plugins/HID

1 file changed

+1
-3
lines changed

Packages/com.unity.inputsystem/InputSystem/Plugins/HID/HIDSupport.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public HIDPageUsage(HID.GenericDesktop usage)
6565
}
6666
}
6767

68+
private static HIDPageUsage[] s_SupportedHIDUsages;
6869

6970
/// <summary>
7071
/// An array of HID usages the input is configured to support.
@@ -84,9 +85,6 @@ public HIDPageUsage(HID.GenericDesktop usage)
8485
/// <see cref="HID.GenericDesktop.MultiAxisController"/>, <see cref="HID.GenericDesktop.TabletPCControls"/>,
8586
/// and <see cref="HID.GenericDesktop.AssistiveControl"/>.
8687
/// </remarks>
87-
88-
public static HIDPageUsage[] s_SupportedHIDUsages;
89-
9088
public static ReadOnlyArray<HIDPageUsage> supportedHIDUsages
9189
{
9290
get => s_SupportedHIDUsages;

0 commit comments

Comments
 (0)