Skip to content
This repository has been archived by the owner on Dec 25, 2020. It is now read-only.

Commit

Permalink
Merge pull request #97 from LoadingPleaseWait/master
Browse files Browse the repository at this point in the history
Changed the name of _2585robophiles to impact2585 for lib2585 imports
  • Loading branch information
AmanuelBayu committed Jan 20, 2016
2 parents c121c91 + 02ac0ba commit 1961b8f
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
Binary file modified lib/Lib2585.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/AutonomousExecuter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015;

import org._2585robophiles.lib2585.Executer;
import org.impact2585.lib2585.Executer;
import org.impact2585.frc2015.systems.LiftSystem;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/Environment.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015;

import org._2585robophiles.lib2585.RobotEnvironment;
import org.impact2585.lib2585.RobotEnvironment;
import org.impact2585.frc2015.input.InputMethod;
import org.impact2585.frc2015.input.XboxInput;
import org.impact2585.frc2015.systems.AccelerometerSystem;
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/Robot.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015;

import org._2585robophiles.lib2585.ExecuterBasedRobot;
import org.impact2585.lib2585.ExecuterBasedRobot;

/**
* The VM is configured to automatically run this class, and to call the
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/TeleopExecuter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015;

import org._2585robophiles.lib2585.RunnableExecuter;
import org.impact2585.lib2585.RunnableExecuter;


/**
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/TestExecuter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015;

import org._2585robophiles.lib2585.Executer;
import org.impact2585.lib2585.Executer;
import org.impact2585.frc2015.input.InputMethod;

import edu.wpi.first.wpilibj.Joystick;
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/input/PartnerXboxInput.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015.input;

import org._2585robophiles.lib2585.XboxConstants;
import org.impact2585.lib2585.XboxConstants;

import edu.wpi.first.wpilibj.Joystick;

Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/input/XboxInput.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015.input;

import org._2585robophiles.lib2585.XboxConstants;
import org.impact2585.lib2585.XboxConstants;

import edu.wpi.first.wpilibj.Joystick;

Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/systems/LiftSystem.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015.systems;

import org._2585robophiles.lib2585.MultiMotor;
import org.impact2585.lib2585.MultiMotor;
import org.impact2585.frc2015.Environment;
import org.impact2585.frc2015.RobotMap;
import org.impact2585.frc2015.input.InputMethod;
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/systems/RobotSystem.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015.systems;

import org._2585robophiles.lib2585.Destroyable;
import org.impact2585.lib2585.Destroyable;
import org.impact2585.frc2015.Initializable;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/org/impact2585/frc2015/systems/WheelSystem.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.impact2585.frc2015.systems;

import org._2585robophiles.lib2585.MultiMotor;
import org.impact2585.lib2585.MultiMotor;
import org.impact2585.frc2015.Environment;
import org.impact2585.frc2015.RobotMap;
import org.impact2585.frc2015.input.InputMethod;
Expand Down

0 comments on commit 1961b8f

Please sign in to comment.