util classes should be final with a private constructor

This commit is contained in:
Sebastian Sdorra
2013-02-11 15:28:14 +01:00
parent 961c6f7f02
commit 114834d257
22 changed files with 232 additions and 51 deletions

View File

@@ -30,6 +30,7 @@
*/
package sonia.scm.user;
//~--- non-JDK imports --------------------------------------------------------
@@ -43,7 +44,7 @@ import sonia.scm.HandlerEvent;
*
* @author Sebastian Sdorra
*/
public class UserEventHack
public final class UserEventHack
{
/**
@@ -52,6 +53,14 @@ public class UserEventHack
private static final Logger logger =
LoggerFactory.getLogger(UserEventHack.class);
//~--- constructors ---------------------------------------------------------
/**
* Constructs ...
*
*/
private UserEventHack() {}
//~--- methods --------------------------------------------------------------
/**