Skip to content

Commit 94bcf24

Browse files
committed
Fixes the templates to not include System.Text
It screws with Encoder.
1 parent c90f98d commit 94bcf24

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Templates/CSharp/Project-Templates/AttributedCommandRobot/Robot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
4-
$endif$using System.Text;
4+
$endif$
55
using WPILib;
66
using WPILib.Extras.AttributedCommandModel;
77

Templates/CSharp/Project-Templates/CommandRobot/Robot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
4-
$endif$using System.Text;
4+
$endif$
55
using WPILib;
66
using WPILib.Commands;
77
using WPILib.livewindow;

Templates/CSharp/Project-Templates/IterativeRobot/Robot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
4-
$endif$using System.Text;
4+
$endif$
55
using WPILib;
66

77
namespace $safeprojectname$

Templates/CSharp/Project-Templates/LabVIEWRobot/Robot.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
using System;
22
using System.Collections.Generic;
33
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
4-
$endif$using System.Text;
4+
$endif$
55
using WPILib;
66
using WPILib.Extras;
77

88
namespace $safeprojectname$
99
{
1010
public class $safeprojectname$ : LabVIEWRobot
1111
{
12-
public override void RobotInit()
12+
public override void Begin()
1313
{
1414

1515
}

Templates/CSharp/Project-Templates/SampleRobot/Robot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33
$if$ ($targetframeworkversion$ >= 3.5)using System.Linq;
4-
$endif$using System.Text;
4+
$endif$
55
using WPILib;
66

77
namespace $safeprojectname$

0 commit comments

Comments
 (0)