fix: renamed train files

This commit is contained in:
Mathias
2026-03-09 10:50:44 +01:00
parent 18bc153848
commit 2cc172d1f6
4 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ package oving7.train;
/**
* The class {@code TrainCar} represents a simple and general train car.
*/
public class TrainCarDocs {
public class TrainCar {
// TODO: Add fields here
@@ -15,7 +15,7 @@ public class TrainCarDocs {
*
* @see TrainCarTest#testDeadWeight()
*/
public TrainCarDocs(int deadWeight) {
public TrainCar(int deadWeight) {
// TODO: Implement this constructor
}