From 72788c7428e10f79ab22bb73fc3fb2f4ecf688d3 Mon Sep 17 00:00:00 2001 From: rob bygrave Date: Thu, 5 Jul 2018 22:41:28 +1200 Subject: [PATCH] No effective change - tidy test code --- .../java/org/tests/model/basic/BBookmark.java | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/test/java/org/tests/model/basic/BBookmark.java b/src/test/java/org/tests/model/basic/BBookmark.java index ddd7d283d..3e18cb56d 100644 --- a/src/test/java/org/tests/model/basic/BBookmark.java +++ b/src/test/java/org/tests/model/basic/BBookmark.java @@ -26,44 +26,26 @@ public class BBookmark { @Column private BBookmarkUser user; - /** - * @return the id - */ public Integer getId() { return this.id; } - /** - * @param id the id to set - */ public void setId(final Integer id) { this.id = id; } - /** - * @return the bookmarkReference - */ public String getBookmarkReference() { return this.bookmarkReference; } - /** - * @param bookmarkReference the bookmarkReference to set - */ public void setBookmarkReference(final String bookmarkReference) { this.bookmarkReference = bookmarkReference; } - /** - * @return the user - */ public BBookmarkUser getUser() { return this.user; } - /** - * @param user the user to set - */ public void setUser(final BBookmarkUser user) { this.user = user; }