Skip to content

Commit

Permalink
Incorrect assertion with multget in a cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
slacmshankar committed Sep 30, 2016
1 parent 59b905e commit a6da166
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -1618,10 +1618,10 @@ private PVInfoForClusterRetrieval(String pvName, PVTypeInfo typeInfo,
this.postProcessor = postProcessor;
this.applianceInfo = applianceInfo;

assert(this.pvName == null);
assert(this.typeInfo == null);
assert(this.postProcessor == null);
assert(this.applianceInfo == null);
assert(this.pvName != null);
assert(this.typeInfo != null);
assert(this.postProcessor != null);
assert(this.applianceInfo != null);
}

public String getPVName() {
Expand Down

0 comments on commit a6da166

Please sign in to comment.