SCRIPT Run java package replacements

This commit is contained in:
PJ Reiniger
2025-11-07 19:55:43 -05:00
committed by Peter Johnson
parent 12823a003d
commit f0a3c64121
1590 changed files with 8469 additions and 8469 deletions

View File

@@ -4,10 +4,10 @@
// THIS FILE WAS AUTO-GENERATED BY ./wpimath/generate_numbers.py. DO NOT MODIFY
package edu.wpi.first.math.numbers;
package org.wpilib.math.numbers;
import edu.wpi.first.math.Nat;
import edu.wpi.first.math.Num;
import org.wpilib.math.util.Nat;
import org.wpilib.math.util.Num;
/** A class representing the number {{ num }}. */
public final class N{{ num }} extends Num implements Nat<N{{ num }}> {

View File

@@ -4,11 +4,11 @@
// THIS FILE WAS AUTO-GENERATED BY ./wpimath/generate_numbers.py. DO NOT MODIFY
package edu.wpi.first.math;
package org.wpilib.math;
// CHECKSTYLE.OFF: ImportOrder
{% for num in nums %}
import edu.wpi.first.math.numbers.N{{ num }};
import org.wpilib.math.numbers.N{{ num }};
{%- endfor %}
// CHECKSTYLE.ON