Skip to content

Commit

Permalink
Merge pull request jglobus#72 from bpalak/f34b28e932f8c4f8d04f5bf89ae…
Browse files Browse the repository at this point in the history
…61078be3525fd

Vulnerabilities corrections
  • Loading branch information
bpalak committed Mar 25, 2013
2 parents 1499d02 + f34b28e commit fb00c5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class AsciiTranslator {

protected byte[] lineSep;

protected static byte[] systemLineSep;
protected final static byte[] systemLineSep;

static {
systemLineSep = System.getProperty("line.separator").getBytes();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class TrustedCertificates implements Serializable {
* <caHash>.signing_policy in the same directory as the trusted
* certificates.
*/
public static String SIGNING_POLICY_FILE_SUFFIX = ".signing_policy";
public final static String SIGNING_POLICY_FILE_SUFFIX = ".signing_policy";

private static KeyStore ms_trustStore = null;
private static CertStore ms_crlStore = null;
Expand Down
4 changes: 2 additions & 2 deletions ssl-proxies/src/main/java/org/globus/util/PEMUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class PEMUtils {

static final int LINE_LENGTH = 64;

public static String lineSep;
public static byte[] lineSepBytes;
public final static String lineSep;
public final static byte[] lineSepBytes;

static {
lineSep = System.getProperty("line.separator");
Expand Down

0 comments on commit fb00c5f

Please sign in to comment.