Skip to content

Commit

Permalink
fix(provider/kubernetes): switch access modifiers for KubernetesKind …
Browse files Browse the repository at this point in the history
…constructors (#2128)
  • Loading branch information
danielpeach authored Nov 16, 2017
1 parent e49eb15 commit ee77911
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class KubernetesKind {

private static List<KubernetesKind> values;

private KubernetesKind(String name, String alias) {
protected KubernetesKind(String name, String alias) {
if (values == null) {
values = new ArrayList<>();
}
Expand All @@ -49,7 +49,7 @@ private KubernetesKind(String name, String alias) {
values.add(this);
}

private KubernetesKind(String name) {
protected KubernetesKind(String name) {
this(name, null);
}

Expand Down

0 comments on commit ee77911

Please sign in to comment.