mirror of https://github.com/apache/cloudstack.git
findbugs: final fields
Signed-off-by: Daan Hoogland <daan@onecht.net> This closes #517
This commit is contained in:
parent
230cf2eefa
commit
e3daa10960
|
|
@ -39,7 +39,7 @@ import com.cloud.utils.Pair;
|
|||
*/
|
||||
public class SerializerHelper {
|
||||
public static final Logger s_logger = Logger.getLogger(SerializerHelper.class.getName());
|
||||
public static String token = "/";
|
||||
public static final String token = "/";
|
||||
|
||||
public static String toSerializedStringOld(Object result) {
|
||||
if (result != null) {
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ public class Link {
|
|||
private boolean _gotFollowingPacket;
|
||||
|
||||
private SSLEngine _sslEngine;
|
||||
public static String keystoreFile = "/cloudmanagementserver.keystore";
|
||||
public static final String keystoreFile = "/cloudmanagementserver.keystore";
|
||||
|
||||
public Link(InetSocketAddress addr, NioConnection connection) {
|
||||
_addr = addr;
|
||||
|
|
|
|||
Loading…
Reference in New Issue