Skip to content

Commit b5db172

Browse files
authored
Fix invalid java replacements json file (#738)
1 parent d248c72 commit b5db172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode-wpilib/resources/java_replacements.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,13 @@
147147
{ "from": "MutableMeasure<Velocity<Distance>>", "to": "MutLinearVelocity" },
148148
{ "from": "MutableMeasure<Velocity<Angle>>", "to": "MutAngularVelocity" },
149149
{ "from": "MutableMeasure<Velocity<Velocity<Distance>>>", "to": "MutLinearAcceleration" },
150-
{ "from": "MutableMeasure<Velocity<Velocity<Angle>>>", "to": "MutAngularAcceleration" }
150+
{ "from": "MutableMeasure<Velocity<Velocity<Angle>>>", "to": "MutAngularAcceleration" },
151151
{ "from": "Measure<(\\w*)>", "to": "$1" },
152152
{ "from": "Measure<Velocity<Distance>>", "to": "LinearVelocity" },
153153
{ "from": "Measure<Velocity<Angle>>", "to": "AngularVelocity" },
154154
{ "from": "Measure<Velocity<Velocity<Distance>>>", "to": "LinearAcceleration" },
155155
{ "from": "Measure<Velocity<Velocity<Angle>>>", "to": "AngularAcceleration" },
156-
{ "from": "MutableMeasure.zero\\((\\w*)\\)", "to": "$1.mutable(0)" },
156+
{ "from": "MutableMeasure.zero\\((\\w*)\\)", "to": "$1.mutable(0)" }
157157
]
158158
}
159159
]

0 commit comments

Comments
 (0)