blob: 860c6275effd71cfe96fb60ba68f3e5d3ec175eb [file] [log] [blame]
Brian Silverman890a32a2018-03-11 15:41:56 -07001package com.ctre;
2
3/**
4* @deprecated Use TalonSRX instead. This deprecated class will be removed in 2019.
5* @see <a href="https://github.com/CrossTheRoadElec/Phoenix-Documentation/blob/master/Migration%20Guide.md">Phoenix 2018 Migration Guide</a>
6*/
7@Deprecated
8public class CANTalon extends com.ctre.phoenix.motorcontrol.can.TalonSRX {
9 public CANTalon(int deviceNumber) {
10 super(deviceNumber);
11 }
12}