Skip to content

Commit

Permalink
WIP Apply suggestions from code review
Browse files Browse the repository at this point in the history
will be squashed in a few minutes

Co-Authored-By: George Gastaldi <[email protected]>
  • Loading branch information
loicmathieu and gastaldi authored Mar 3, 2020
1 parent 737f332 commit f65b776
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ public static long deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not delete (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public static boolean deleteById(Object id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ public default long deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not deleted (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public default boolean deleteById(Object id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ public static long deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not delete (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public static boolean deleteById(Object id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ public default long deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not deleted (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public default boolean deleteById(Object id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ public static Uni<Long> deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not delete (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public static Uni<Boolean> deleteById(Object id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ public default Uni<Long> deleteAll() {
* Delete an entity of this type by ID.
*
* @param id the ID of the entity to delete.
* @return false if the entity is not deleted (not found).
* @return false if the entity was not deleted (not found).
*/
@GenerateBridge
public default Uni<Boolean> deleteById(Object id) {
Expand Down

0 comments on commit f65b776

Please sign in to comment.