Skip to content

Commit

Permalink
Removing useless imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassklp committed Jul 3, 2023
1 parent cc8ea8e commit 2baab96
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 15 deletions.
3 changes: 1 addition & 2 deletions Desktop.Robot/Clicks/IClick.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Threading;
using System.Threading;

namespace Desktop.Robot.Clicks
{
Expand Down
3 changes: 1 addition & 2 deletions Desktop.Robot/Clicks/Linux/MiddleClick.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
namespace Desktop.Robot.Clicks.Linux
namespace Desktop.Robot.Clicks.Linux
{
internal record MiddleClick(int delay) : IClick
{
Expand Down
3 changes: 1 addition & 2 deletions Desktop.Robot/Clicks/MouseContext.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Drawing;
using System.Drawing;

namespace Desktop.Robot.Clicks
{
Expand Down
3 changes: 0 additions & 3 deletions Desktop.Robot/Extensions/ListenersExtension.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
using System;
using System.Diagnostics;
using System.Drawing;
using System.Reactive.Concurrency;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Threading;

namespace Desktop.Robot.Extensions
Expand Down
2 changes: 0 additions & 2 deletions Desktop.Robot/Key.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;

Expand Down
6 changes: 2 additions & 4 deletions Desktop.Robot/Windows/Robot.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Threading;

namespace Desktop.Robot.Windows
{
public class Robot : AbstractRobot
public class Robot : AbstractRobot
{
public override Point GetMousePosition()
{
Expand Down Expand Up @@ -97,7 +95,7 @@ private void DoMouseScroll(int value)
{
var inputs = new[]
{
new Input
new Input
{
Type = InputType.Mouse,
MouseInputWithUnion = new MouseInput(value / 10, MouseState.MouseWheelUpDown)
Expand Down

0 comments on commit 2baab96

Please sign in to comment.