-
Notifications
You must be signed in to change notification settings - Fork 54
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
[W14-2] FomoFoto #28
base: master
Are you sure you want to change the base?
[W14-2] FomoFoto #28
Conversation
Feedback (Week 7; v1.1)Github Project Page
README
Project Page
About Us page
UG/DG feedback will be provided to you in the documents. |
Renamed photos
update user guide - delete findtag command
@Override | ||
public CommandResult execute(Model model, CommandHistory history) { | ||
if (this.brightnessValue.isPresent()) { | ||
seedu.address.model.image.Image initialImage = new seedu.address |
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.
You can do an import seedu.address.model.image.Image
then this will be just Image initialImage = new Image(...)
If you are concerned with the class name clash, you can name your Image class as FFImage
.
private String fileName; | ||
|
||
public CropCommand(int x, int y, int width, int height, String image) { | ||
xCoord = x; |
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.
A suggestion to store your coordinates is to store them as tuples, where you can easily if 2 coordinates are equal and access the x and y values as .x
or .y
.
throw new ParseException(String.format(MESSAGE_INVALID_TYPE, ImportCommand.MESSAGE_USAGE)); | ||
} | ||
} catch (IOException e) { | ||
System.out.println(e.toString()); |
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.
Instead of println
, you should log it as an error.
Add Reposense to PPP
Edit user guide
Trying to fix addison's face
Fix spelling errors.
Correct grammar in PPP and dev guide
Edit adoc, user guide, developer guide english
Edit grammar in dev guide and sequence diagram for contrast command
PPP Updates
Format Error Fix
No description provided.