updated task#2587
Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Sorry, the pull request review was unsuccessful for the following reasons:
Warning
There are no files to review. Please make sure that you have added files to the pull request. Some files and directories may be ignored from the review or failed to load.
[CODE: NFR]
Additional info:
Ignored files list:
src/main/java/core/basesyntax/Bulldozer.javasrc/main/java/core/basesyntax/Excavator.javasrc/main/java/core/basesyntax/Machine.javasrc/main/java/core/basesyntax/Truck.java
If the issue is within your control, please address it.
The next review attempt will automatically launch in about 1 hour.
If you believe this is an error or need assistance, please contact the support team.
|
@mateacademy-ai-mentor check my request, please |
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| machine.doWork(); | ||
| machine.stopWork(); | ||
| } | ||
| } |
There was a problem hiding this comment.
Spelling error: 'stoped' should be 'stopped'
| machine.doWork(); | ||
| machine.stopWork(); | ||
| } | ||
| } |
There was a problem hiding this comment.
Spelling error: 'stoped' should be 'stopped'
| machine.doWork(); | ||
| machine.stopWork(); | ||
| } | ||
| } |
There was a problem hiding this comment.
Spelling error: 'stoped' should be 'stopped'
|
|
||
| @Override | ||
| public void stopWork() { | ||
| System.out.println("Bulldozer stoped"); |
There was a problem hiding this comment.
Spelling error: 'stoped' should be 'stopped'. The message needs to be accurate and professional.
|
|
||
| @Override | ||
| public void stopWork() { | ||
| System.out.println("Bulldozer stoped"); |
There was a problem hiding this comment.
Spelling error: 'stoped' should be 'stopped'. Ensure consistency across all machine classes.
|
|
||
| @Override | ||
| public void stopWork() { | ||
| System.out.println("Excavator stoped"); |
There was a problem hiding this comment.
Typo: 'stoped' should be 'stopped'
| public void doWork() { | ||
| System.out.println("Excavator started work"); | ||
| } | ||
|
|
There was a problem hiding this comment.
Redundant empty line between methods should be removed per checklist guidelines
|
|
||
| @Override | ||
| public void stopWork() { | ||
| System.out.println("Truck stoped"); |
There was a problem hiding this comment.
Typo: 'stoped' should be 'stopped' - the message should be accurate and professional
| @@ -0,0 +1,13 @@ | |||
| package core.basesyntax; | |||
|
|
|||
There was a problem hiding this comment.
Redundant empty line after package declaration - remove per checklist guidelines
| public void doWork() { | ||
| System.out.println("Truck started work"); | ||
| } | ||
|
|
There was a problem hiding this comment.
Redundant empty line between methods - remove per checklist guidelines
No description provided.