Skip to content

Commit

Permalink
Fix Some Codefactor Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrcubix committed Oct 10, 2024
1 parent 4241d21 commit ef97ed3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Touch-Gestures.Tests/Tablet/GenericTouchReport.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using System;
using OpenTabletDriver.Plugin.Tablet.Touch;

namespace TouchGestures.Tests.Tablet
{
public class GenericTouchReport : ITouchReport
{
public byte[] Raw { set; get; } = new byte[0];
public TouchPoint[] Touches { get; init; } = new TouchPoint[0];
public byte[] Raw { set; get; } = Array.Empty<byte>();
public TouchPoint[] Touches { get; init; } = Array.Empty<TouchPoint>();
}
}

0 comments on commit ef97ed3

Please sign in to comment.