1 | package com.github.theresasogunle; |
||
2 | |||
3 | /** |
||
4 | * @author Theresa |
||
5 | */ |
||
6 | public class RaveConstant { |
||
0 ignored issues
–
show
Best Practice
introduced
by
![]() |
|||
7 | |||
8 | public static String SECRET_KEY; |
||
0 ignored issues
–
show
public static fields should always be marked final to prevent them being overwritten in unexpected ways. Consider making
SECRET_KEY final.
![]() |
|||
9 | public static String PUBLIC_KEY; |
||
0 ignored issues
–
show
public static fields should always be marked final to prevent them being overwritten in unexpected ways. Consider making
PUBLIC_KEY final.
![]() |
|||
10 | public static Environment ENVIRONMENT; |
||
0 ignored issues
–
show
public static fields should always be marked final to prevent them being overwritten in unexpected ways. Consider making
ENVIRONMENT final.
![]() |
|||
11 | |||
12 | } |
||
13 | |||
14 |