Skip to content

Commit

Permalink
Make constant PLUGIN_LABEL_KEY_NAMESPACE private
Browse files Browse the repository at this point in the history
  • Loading branch information
eaglerainbow committed Jun 10, 2018
1 parent b058509 commit 30c937b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author eaglerainbow
*
*/
public interface DockerContainerLabelKeys {
public final class DockerContainerLabelKeys {

/**
* As requested by https://docs.docker.com/config/labels-custom-metadata/, keys of labels used
Expand All @@ -22,7 +22,7 @@ public interface DockerContainerLabelKeys {
*
* Label keys defined in this interface already have this namespace prefixed.
*/
static final String PLUGIN_LABEL_KEY_NAMESPACE = "com.nirima.jenkins.plugins.docker.";
private static final String PLUGIN_LABEL_KEY_NAMESPACE = "com.nirima.jenkins.plugins.docker.";

/**
* Name of the Docker "label" that we'll put into every container we start,
Expand Down

0 comments on commit 30c937b

Please sign in to comment.