Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
linting take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonwatson committed Nov 8, 2023
1 parent 35d2ed9 commit eb68235
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/frc/lib/util/KeyboardAndMouse.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
public class KeyboardAndMouse {

private static KeyboardAndMouse keyboard = new KeyboardAndMouse();
private double deltaX = 0, deltaY = 0;
private double x = 0, y = 0;
private double deltaX = 0;
private double deltaY = 0;
private double x = 0;
private double y = 0;

private KeyboardAndMouse() {
NetworkTableInstance instance = NetworkTableInstance.getDefault();
Expand Down

0 comments on commit eb68235

Please sign in to comment.