java-swing-mvc
java-swing-mvc copied to clipboard
Fixed redundant display of user details in the UserDetails view
In the UserDetails.java View file, the defaultTableModel would not clear out due to which the user details got duplicated onto the view. I added a simple check in order to clear out the rows of the table while calling the getUsers() function (in UserDetails.java) so that the objects of the database get added to the table only once, hence avoiding redundant display at the view.