Skip to content

Commit

Permalink
Made constants private.
Browse files Browse the repository at this point in the history
  • Loading branch information
mentiflectax committed Jan 2, 2015
1 parent 7796f35 commit cb9bf7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/jcabi/ssl/maven/plugin/Keytool.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ final class Keytool {
/**
* Localhost, input to the keytool.
*/
public static final String LOCALHOST = "localhost";
private static final String LOCALHOST = "localhost";

/**
* Platform-dependent line separator.
*/
public static final String NEWLINE = System.getProperty("line.separator");
private static final String NEWLINE = System.getProperty("line.separator");

/**
* Keystore location.
Expand Down

0 comments on commit cb9bf7e

Please sign in to comment.