Skip to content

Commit

Permalink
[*] Fixed formatting issues as requested by Scott
Browse files Browse the repository at this point in the history
  • Loading branch information
Lei-Tin committed Dec 4, 2022
1 parent 13ec9f2 commit 2a3e2b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/billgates/entities/EntryBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

/**
* Clean Architecture Layer: Enterprise Business Rules
* Design Pattern: Builder
* This is a builder class that help to build an Entry or Splitter Entry.
* <p>
* Design Pattern: Builder
* The instance variables define the default values for each attribute.
* Each setter method set an attribute of the entry and returns this EntryBuilder.
* In this way, you can chain setters and build an Entry in one line.
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/billgates/entities/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

/**
* Clean Architecture Layer: Enterprise Business Rules
* Design Pattern: Singleton
* This class represents a user entity in our program.
* Only one user is allowed in the running time of our program.
* <p>
* Design Pattern: Singleton
* The UserJoinUseCase will initialize the user by calling getInstance(parameters).
* Other use cases can use getInstance() (the one without parameters) to obtain the current user.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

/**
* Clean Architecture Layer: Application Business Rules
* Design Pattern: Strategy
* This class is being used by multiple use cases to retrieve, insert, and modify information
* that is used for the application.
* <p>
* Design Pattern: Strategy
* We can implement the database gateway in multiple different types of databases
* The current implemented database by default, uses MySQL Database
*
Expand Down

0 comments on commit 2a3e2b5

Please sign in to comment.