Skip to content

Commit

Permalink
Updated for 2019 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Rieck authored and Keith Rieck committed Jan 7, 2019
1 parent 97ae872 commit 2146da3
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
File renamed without changes.
@@ -1,40 +1,40 @@
/*----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------*/
/* Copyright (c) 2017-2018 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/

package frc.robot;

import edu.wpi.first.wpilibj.*;

public class Robot extends IterativeRobot {
@Override
public void robotInit() { }

@Override
public void disabledInit() { }

@Override
public void autonomousInit() { }

@Override
public void teleopInit() { }

@Override
public void testInit() { }


@Override
public void disabledPeriodic() { }

@Override
public void autonomousPeriodic() { }

@Override
public void teleopPeriodic() { }

@Override
public void testPeriodic() { }
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory of */
/* the project. */
/*----------------------------------------------------------------------------*/

package frc.robot;

import edu.wpi.first.wpilibj.*;

public class Robot extends IterativeRobot {
@Override
public void robotInit() { }

@Override
public void disabledInit() { }

@Override
public void autonomousInit() { }

@Override
public void teleopInit() { }

@Override
public void testInit() { }


@Override
public void disabledPeriodic() { }

@Override
public void autonomousPeriodic() { }

@Override
public void teleopPeriodic() { }

@Override
public void testPeriodic() { }
}

0 comments on commit 2146da3

Please sign in to comment.