mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 07:25:44 +01:00
util classes should be final with a private constructor
This commit is contained in:
@@ -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 --------------------------------------------------------------
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user