-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix problem with style code #1572
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # src/main/java/core/basesyntax/Bulldozer.java # src/main/java/core/basesyntax/Excavator.java # src/main/java/core/basesyntax/Machine.java # src/main/java/core/basesyntax/MainApp.java # src/main/java/core/basesyntax/Truck.java
Delete Override hashcode
Change fori to foreach
i put empty line between methods
chanhe loop. I checked in development environment it works
add whitespace
# Conflicts: # src/main/java/core/basesyntax/Bulldozer.java # src/main/java/core/basesyntax/Machine.java # src/main/java/core/basesyntax/MainApp.java
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job, with minor comments
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
line
package core.basesyntax; | ||
|
||
public class Excavator extends Machine { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the first empty line in all classes/interfaces/methods where it is present
public abstract void doWork(); | ||
|
||
public abstract void stopWork(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove the last empty line in all classes/interfaces/methods where it is present
No description provided.