Skip to content

Commit

Permalink
Merge 7e22410 into b740fd5
Browse files Browse the repository at this point in the history
  • Loading branch information
LiuXuanIan committed Mar 5, 2019
2 parents b740fd5 + 7e22410 commit 452299e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 2 deletions.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified README.adoc
100644 → 100755
Empty file.
Empty file modified _config.yml
100644 → 100755
Empty file.
Empty file modified appveyor.yml
100644 → 100755
Empty file.
Empty file modified build.gradle
100644 → 100755
Empty file.
14 changes: 14 additions & 0 deletions docs/DeveloperGuide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,20 @@ Optionally, you can set up AppVeyor as a second CI (see <<UsingAppVeyor#, UsingA
[NOTE]
Having both Travis and AppVeyor ensures your App works on both Unix-based platforms and Windows-based platforms (Travis is Unix-based and AppVeyor is Windows-based)

== Design

=== Architecture

=== UI component

=== Logic component

=== Model component

=== Storage component

=== Common classes

== Implementation

This section describes some noteworthy details on how certain features are implemented.
Expand Down
Empty file modified gradle.properties
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@ public interface EquipmentManagerStorage {
* @see #saveAddressBook(ReadOnlyEquipmentManager)
*/
void saveAddressBook(ReadOnlyEquipmentManager addressBook, Path filePath) throws IOException;

}
1 change: 0 additions & 1 deletion src/main/java/seedu/address/storage/StorageManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,4 @@ public void saveAddressBook(ReadOnlyEquipmentManager addressBook, Path filePath)
logger.fine("Attempting to write to data file: " + filePath);
equipmentManagerStorage.saveAddressBook(addressBook, filePath);
}

}

0 comments on commit 452299e

Please sign in to comment.