Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Dec 16, 2021
1 parent 5f7c3ac commit 4586504
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ protected T internalFrom(TypeDef definition, String... ignore) {
}

private T internalFromImpl(TypeDef definition, Set<String> visited, String... ignore) {
visited.add(definition.getFullyQualifiedName());
final B builder = newBuilder();
Set<String> ignores =
ignore.length > 0 ? new LinkedHashSet<>(Arrays.asList(ignore)) : Collections
Expand Down Expand Up @@ -419,7 +420,6 @@ private T internalFromImpl(String name, TypeRef typeRef, Set<String> visited) {
if (!def.getFullyQualifiedName().startsWith("java") && visited.contains(def.getFullyQualifiedName())) {
throw new IllegalArgumentException("Found a cyclic reference involving " + def.getFullyQualifiedName());
}
visited.add(def.getFullyQualifiedName());
return internalFromImpl(def, visited);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
@Version(value="v1alpha1", storage=false)
@Group("io.zookeeper")
public class Zookeeper extends CustomResource<ZookeeperSpec, ZookeeperStatus> implements Namespaced {
private ZookeeperSpec spec;
private ZookeeperStatus status;
// TODO: ask if this should be supported or not
// private ZookeeperSpec spec;
// private ZookeeperStatus status;
}

0 comments on commit 4586504

Please sign in to comment.