[cscore] Move java package to edu.wpi.first.cscore (#3294)

This is more consistent with the other Java packages, and also is more
correct, as we own the first.wpi.edu domain but not the full wpi.edu domain.
This commit is contained in:
Peter Johnson
2021-04-10 11:42:41 -07:00
committed by GitHub
parent d7fabe81fe
commit 3abe0b9d49
40 changed files with 277 additions and 277 deletions

View File

@@ -13,7 +13,7 @@
* implements VisionRunner.Listener<MyFindTotePipeline> {
*
* // A USB camera connected to the roboRIO.
* private {@link edu.wpi.cscore.VideoSource VideoSource} usbCamera;
* private {@link edu.wpi.first.cscore.VideoSource VideoSource} usbCamera;
*
* // A vision pipeline. This could be handwritten or generated by GRIP.
* // This has to implement {@link edu.wpi.first.vision.VisionPipeline}.