summaryrefslogtreecommitdiff
path: root/smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java
diff options
context:
space:
mode:
Diffstat (limited to 'smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java')
-rw-r--r--smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java b/smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java
index abcd121..610985e 100644
--- a/smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java
+++ b/smartdashboard/src/edu/wpi/first/smartdashboard/types/named/PIDSubsystemType.java
@@ -1,5 +1,6 @@
package edu.wpi.first.smartdashboard.types.named;
+import edu.wpi.first.smartdashboard.livewindow.elements.PIDSubsystem;
import edu.wpi.first.smartdashboard.types.NamedDataType;
/**
@@ -11,7 +12,7 @@ public class PIDSubsystemType extends NamedDataType {
public static final String LABEL = "PIDSubsystem";
private PIDSubsystemType() {
- super(LABEL, SubsystemType.get(), PIDType.get());
+ super(LABEL, PIDSubsystem.class, SubsystemType.get(), PIDType.get());
}
public static NamedDataType get() {