From a5b72d62a19b6048ebbcc900617f8b0bafa37fcd Mon Sep 17 00:00:00 2001 From: Thomas Clark Date: Tue, 29 Jul 2014 18:01:17 -0400 Subject: [PATCH] Remove the last obsolete interface Change-Id: I5921968b3064af53f716858092c2da3ea7522362 --- .../edu/wpi/first/wpilibj/parsing/IUtility.java | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 wpilibj/wpilibJava/src/main/java/edu/wpi/first/wpilibj/parsing/IUtility.java diff --git a/wpilibj/wpilibJava/src/main/java/edu/wpi/first/wpilibj/parsing/IUtility.java b/wpilibj/wpilibJava/src/main/java/edu/wpi/first/wpilibj/parsing/IUtility.java deleted file mode 100644 index e7567fd6da..0000000000 --- a/wpilibj/wpilibJava/src/main/java/edu/wpi/first/wpilibj/parsing/IUtility.java +++ /dev/null @@ -1,17 +0,0 @@ -/*----------------------------------------------------------------------------*/ -/* Copyright (c) FIRST 2008-2012. 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 edu.wpi.first.wpilibj.parsing; - -/** - * IUtility is an interface implemented by any WPILibJ class which should appear - * in the utility tree of the java program builder. A utility is generally a - * class which is not a specific device, but more of a software tool. An - * example of this would be the Timer class - * @author Ryan O'Meara - */ -public interface IUtility extends IDevice {}