mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
SCRIPT Run java package replacements
This commit is contained in:
committed by
Peter Johnson
parent
12823a003d
commit
f0a3c64121
@@ -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 }}> {
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user