-
Notifications
You must be signed in to change notification settings - Fork 0
made paths #12
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
base: main
Are you sure you want to change the base?
made paths #12
Conversation
Ayidana-Aboraah
left a comment
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.
Some small changes need
Ayidana-Aboraah
left a comment
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.
The mistakes you made before seem to have been repeated here and there are some more stylistic issues.
|
|
||
| public class Inake extends CommandBase { | ||
|
|
||
| subWristem intake = new subWristem(); |
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.
Should remove the intialisation and keep the object name and type.
| public Inake(subWristem intake) { | ||
| this.intake = intake; | ||
| addRequirements(intake); | ||
| // Use addRequirements() here to declare subsystem dependencies. |
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 this comment.
| case 2: height = highHeight; //highest height | ||
| break; | ||
| } | ||
| // Use addRequirements() here to declare subsystem dependencies. |
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 comment
| elevator Elevator = new elevator(); | ||
| subWristem intake = new subWristem(); | ||
| public lowerElevator() { | ||
| // Use addRequirements() here to declare subsystem dependencies. | ||
| } |
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.
Subsystems should be passed in as parameters and the addRequirments method should be used
No description provided.