Skip to content

Commit f978528

Browse files
committed
Fix Some Codefactor Issues
1 parent 63cd107 commit f978528

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
using System;
12
using OpenTabletDriver.Plugin.Tablet.Touch;
23

34
namespace TouchGestures.Tests.Tablet
45
{
56
public class GenericTouchReport : ITouchReport
67
{
7-
public byte[] Raw { set; get; } = new byte[0];
8-
public TouchPoint[] Touches { get; init; } = new TouchPoint[0];
8+
public byte[] Raw { set; get; } = Array.Empty<byte>();
9+
public TouchPoint[] Touches { get; init; } = Array.Empty<TouchPoint>();
910
}
1011
}

0 commit comments

Comments
 (0)