Skip to content
Snippets Groups Projects
Commit c4a4a24f authored by ribeaudc's avatar ribeaudc
Browse files

change: - Make 'Constants' final and add a private constructor.

SVN: 6237
parent 542088d9
No related branches found
No related tags found
No related merge requests found
...@@ -23,9 +23,14 @@ import org.apache.commons.lang.time.DateUtils; ...@@ -23,9 +23,14 @@ import org.apache.commons.lang.time.DateUtils;
* *
* @author Bernd Rinn * @author Bernd Rinn
*/ */
public class Constants public final class Constants
{ {
private Constants()
{
// This class can not be instantiated.
}
/** String that indicates a marker file */ /** String that indicates a marker file */
public static final String MARKER_PREFIX = ".MARKER_"; public static final String MARKER_PREFIX = ".MARKER_";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment