Skip to content

Commit

Permalink
testPush
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisBogusevich committed Aug 10, 2023
1 parent 4f2384b commit 24f8901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/core/basesyntax/Truck.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ public class Truck extends Machine {

public void doWork() {

System.out.println("core.basesyntax.Truck started its work");
System.out.println("Truck started its work");
}

public void stopWork() {
System.out.println("core.basesyntax.Truck stoped its work");
System.out.println("Truck stoped its work");
}

}

0 comments on commit 24f8901

Please sign in to comment.