HAND FIXES: Fixup remaining rename issues

This commit is contained in:
PJ Reiniger
2025-11-07 19:58:22 -05:00
committed by Peter Johnson
parent bf9da2cdea
commit d3da30d53a
9 changed files with 12 additions and 57 deletions

View File

@@ -211,8 +211,8 @@ cc_binary(
java_binary(
name = "DevMain-Java",
srcs = ["src/dev/java/edu/wpi/first/ntcore/DevMain.java"],
main_class = "edu.wpi.first.ntcore.DevMain",
srcs = ["src/dev/java/org/wpilib/networktables/DevMain.java"],
main_class = "org.wpilib.networktables.DevMain",
deps = [
"ntcore-java",
"//wpiutil:wpiutil-java",

View File

@@ -10,7 +10,7 @@ ext {
}
nativeName = 'ntcore'
devMain = 'edu.wpi.first.ntcore.DevMain'
devMain = 'org.wpilib.networktables.DevMain'
generatedSources = "$projectDir/src/generated/main/native/cpp"
generatedHeaders = "$projectDir/src/generated/main/native/include"
jniSplitSetup = {

View File

@@ -2,9 +2,8 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
package edu.wpi.first.ntcore;
package org.wpilib.networktables;
import org.wpilib.networktables.NetworkTablesJNI;
import org.wpilib.util.runtime.CombinedRuntimeLoader;
public final class DevMain {