Skip to content

Commit e64ddb2

Browse files
authored
Merge pull request #86 from StuyPulse/2025
Import StuyLib to 2025 WPILib
2 parents 540b642 + 796c93b commit e64ddb2

File tree

77 files changed

+78
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+78
-78
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 StuyPulse
3+
Copyright (c) 2025 StuyPulse
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
buildscript {
2-
ext.WPI_VER = "2024.1.1"
2+
ext.WPI_VER = "2025.1.1"
33
}
44

55
plugins {
66
id "java"
77

88
id "maven-publish"
99

10-
id "edu.wpi.first.GradleRIO" version "${WPI_VER}"
10+
id "edu.wpi.first.GradleRIO" version "2025.1.1"
1111
id "com.diffplug.spotless" version "6.22.0"
1212
id "com.github.spotbugs" version "5.2.0"
1313
}

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginManagement {
44
repositories {
55
mavenLocal()
66
gradlePluginPortal()
7-
String frcYear = '2022'
7+
String frcYear = '2025'
88
File frcHome
99
if (OperatingSystem.current().isWindows()) {
1010
String publicFolder = System.getenv('PUBLIC')

src/com/stuypulse/stuylib/control/Controller.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/ControllerGroup.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/angle/AngleController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/angle/AngleControllerGroup.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/angle/feedback/AnglePIDController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/angle/feedforward/AngleArmFeedforward.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/angle/feedforward/AnglePositionFeedforwardController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedback/PIDController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedforward/ArmFeedforward.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedforward/ElevatorFeedforward.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedforward/MotorFeedforward.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedforward/PositionFeedforwardController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/control/feedforward/VelocityFeedforwardController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/Gamepad.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/WPIGamepad.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/gamepads/AutoGamepad.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/gamepads/Logitech.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/gamepads/PS4.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/input/gamepads/Xbox.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/math/Angle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/math/SLMath.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/math/Vector2D.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/network/SmartBoolean.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/network/SmartNumber.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/network/SmartString.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/AStick.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/AStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/FilteredAStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/PollingAStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/AFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/AFilterGroup.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/AHighPassFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/ALowPassFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/AMotionProfile.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/angles/filters/ARateLimit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/BStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/FilteredBStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/PollingBStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BButton.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BButtonRC.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BDebounce.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BDebounceRC.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/booleans/filters/BFilterGroup.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/FilteredIStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/IStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/NumberStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/PollingIStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/Derivative.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/HighPassFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/IFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/IFilterGroup.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/LowPassFilter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/MotionProfile.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/RateLimit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/numbers/filters/TimedMovingAverage.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/vectors/FilteredVStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/vectors/PollingVStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/vectors/VStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/vectors/filters/VClamp.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

src/com/stuypulse/stuylib/streams/vectors/filters/VDeadZone.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */
1+
/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */
22
/* This work is licensed under the terms of the MIT license */
33
/* found in the root directory of this project. */
44

0 commit comments

Comments
 (0)