Skip to content

Commit

Permalink
fix code style; remove extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarmadev committed Jul 19, 2023
1 parent 581e455 commit 261f2ff
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/main/java/core/basesyntax/Bulldozer.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package core.basesyntax;

public class Bulldozer extends Machine {

@Override
public void doWork() {
System.out.println("Bulldozer started its work.");
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/core/basesyntax/Machine.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
package core.basesyntax;

public abstract class Machine {

public abstract void doWork();

public abstract void stopWork();

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

public class MainApp {

public static void main(String[] args) {

Machine truck = new Truck();
Machine bulldozer = new Bulldozer();
Machine excavator = new Excavator();
Expand Down

0 comments on commit 261f2ff

Please sign in to comment.