Skip to content

Commit

Permalink
Removed redundant empty lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojtek-A-JAVA committed Dec 4, 2024
1 parent 741745b commit 57794a4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/main/java/core/basesyntax/Bulldozer.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package core.basesyntax;

public class Bulldozer extends Machine{

@Override
public void doWork() {
System.out.println("The bulldozer is working");
Expand All @@ -10,6 +8,5 @@ public void doWork() {
@Override
public void stopWork() {
System.out.println("The bulldozer stopped working");

}
}
3 changes: 0 additions & 3 deletions src/main/java/core/basesyntax/Excavator.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package core.basesyntax;

public class Excavator extends Machine{

@Override
public void doWork() {
System.out.println("The excavator is working");
Expand All @@ -10,6 +8,5 @@ public void doWork() {
@Override
public void stopWork() {
System.out.println("The excavator stopped working");

}
}
3 changes: 0 additions & 3 deletions src/main/java/core/basesyntax/Truck.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package core.basesyntax;

public class Truck extends Machine{

@Override
public void doWork() {
System.out.println("The truck is working");
Expand All @@ -10,6 +8,5 @@ public void doWork() {
@Override
public void stopWork() {
System.out.println("The truck stopped working");

}
}

0 comments on commit 57794a4

Please sign in to comment.