Skip to content

Commit

Permalink
spotify
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisHeimbigner authored and haileyajohnson committed Nov 6, 2023
1 parent 0d0831a commit 442b0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dap4/src/main/java/dap4/core/ce/CEConstraint.java
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ public List<Slice> getConstrainedSlices(DapVariable var) throws DapException {
Segment seg = findSegment(var);
if (seg != null)
slices = seg.slices;
if (slices == null || slices.isEmpty() == 0)
if (slices == null || slices.isEmpty())
slices = Universal.universalSlices(var);
return slices;
}
Expand Down

0 comments on commit 442b0fb

Please sign in to comment.